Skip to content

Commit

Permalink
config file read buffer size increased
Browse files Browse the repository at this point in the history
adding MQTT authentication has increased the typical size of the config file
  • Loading branch information
jnsbyr committed Jul 10, 2022
1 parent 28c3098 commit 5e6df15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConfigurationFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ConfigurationFile
const char* get(const char* tag);

private:
static const unsigned int CONFIG_BUFFER_SIZE = 256; // [bytes]
static const unsigned int CONFIG_BUFFER_SIZE = 512; // [bytes]
static const unsigned int EXCEPTION_MESSAGE_SIZE = 80; // [bytes]

private:
Expand Down
2 changes: 1 addition & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
namespace CONFIG
{
const char POOL_MODEL_NAME[] = "Intex PureSpa SB-H20";
const char WIFI_VERSION[] = "1.0.2.0"; // 12.06.2022
const char WIFI_VERSION[] = "1.0.2.1"; // 10.07.2022

// WiFi parameters
const unsigned long WIFI_MAX_DISCONNECT_DURATION = 900000; // [ms] 5 min until reboot
Expand Down

0 comments on commit 5e6df15

Please sign in to comment.