Skip to content

Commit 1c8eadc

Browse files
committed
Fix stack size bug
1 parent 1ceb9be commit 1c8eadc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/firmware/ErrorMessages_en.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ You can ignore them:
283283
- *... nvs_open failed ...*
284284
- *E (15) gpio: gpio_install_isr_service(500): GPIO isr service already installed*
285285
- *CAUTION: GPIO pin ... is reserved for USB data* (ignore unless you are using USB connectivity)
286+
- *E NimBLEAdvertisementData: Cannot add UUID, data length exceeded!*
286287

287288
## USB not recognized error (ESP32S3 boards)
288289

src/common/BatteryMonitor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static TaskHandle_t batteryMonitorDaemon = nullptr;
4141
static uint8_t fg_i2c_address;
4242

4343
// Other
44-
#define DAEMON_STACK_SIZE 2048
44+
#define DAEMON_STACK_SIZE 2512
4545

4646
// ----------------------------------------------------------------------------
4747
// Setters

0 commit comments

Comments
 (0)