Version 1.0.1

Fixed bug with stack size of the task of sending messages to the MQTT.
This commit is contained in:
Alexey Zholtikov 2024-06-09 09:32:51 +03:00
parent c1b89af391
commit 4baf53970f
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@
#define MAC_STR "%02X-%02X-%02X-%02X-%02X-%02X"
#define ZH_MESSAGE_TASK_PRIORITY 2 // Prioritize the task of sending messages to the MQTT.
#define ZH_MESSAGE_STACK_SIZE 2048 // The stack size of the task of sending messages to the MQTT.
#define ZH_MESSAGE_STACK_SIZE 3072 // The stack size of the task of sending messages to the MQTT.
#define ZH_SNTP_TASK_PRIORITY 2 // Prioritize the task to get the current time.
#define ZH_SNTP_STACK_SIZE 2048 // The stack size of the task to get the current time.
#define ZH_OTA_TASK_PRIORITY 3 // Prioritize the task of OTA updates.

View File

@ -1 +1 @@
1.0.0
1.0.1