mirror of
https://github.com/lumapu/ahoy.git
synced 2025-08-06 09:58:23 +02:00
Samll BF: Eine schließende Klammer zuviel (bei ESP32 compile)
This commit is contained in:
parent
802dc21863
commit
864c5f5790
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ class RestApi {
|
|||
#ifndef ESP32
|
||||
DynamicJsonDocument json(ESP.getMaxFreeBlockSize() - 512); // need some memory on heap
|
||||
#else
|
||||
DynamicJsonDocument json(12000)); // does this work? I have no ESP32 :-(
|
||||
DynamicJsonDocument json(12000); // does this work? I have no ESP32 :-(
|
||||
#endif
|
||||
DeserializationError err = deserializeJson(json, (const char *)mTmpBuf, mTmpSize);
|
||||
json.shrinkToFit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue