Skip to content

Commit d6e98d6

Browse files
chore: increase deserializer buffer base size
1 parent 9944bca commit d6e98d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

room_control_unit/src/app/logic/presenter/deserializer/json/JsonCommandDeserializer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "Arduino.h"
1111
#include "ArduinoJson.h"
1212

13-
#define BASE_DESERIALIZATION_SIZE 64
13+
#define BASE_DESERIALIZATION_SIZE 128
1414

1515
JsonCommandDeserializer::JsonCommandDeserializer() {};
1616

room_control_unit/src/app/logic/presenter/deserializer/json/JsonCommandDeserializer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "../CommandDeserializer.h"
1313

1414
/*
15-
Class that implement the deserialization of commands sent in the JSON format.
15+
Class that implements the deserialization of commands sent in the JSON format.
1616
*/
1717
class JsonCommandDeserializer: public CommandDeserializer {
1818
public:

0 commit comments

Comments
 (0)