summaryrefslogtreecommitdiff
path: root/ports/esp32/main.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-02-20 16:45:04 +1100
committerDamien George <damien.p.george@gmail.com>2018-02-21 14:24:10 +1100
commitc49a73ab0e18035edaa732d31c882a13534caa7a (patch)
tree1d48d61277c3b4408b241449c89b6ae617bda4c8 /ports/esp32/main.c
parentfe3e17b026595f3386114e784b26a4a07810055c (diff)
esp32: Update to the latest ESP IDF.
This update requires a new ESP32 toolchain: 1.22.0-80-g6c4433a-5.2.0.
Diffstat (limited to 'ports/esp32/main.c')
-rw-r--r--ports/esp32/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/main.c b/ports/esp32/main.c
index 091cbddc9..5b1be4cf7 100644
--- a/ports/esp32/main.c
+++ b/ports/esp32/main.c
@@ -53,7 +53,7 @@
#define MP_TASK_PRIORITY (ESP_TASK_PRIO_MIN + 1)
#define MP_TASK_STACK_SIZE (16 * 1024)
#define MP_TASK_STACK_LEN (MP_TASK_STACK_SIZE / sizeof(StackType_t))
-#define MP_TASK_HEAP_SIZE (96 * 1024)
+#define MP_TASK_HEAP_SIZE (92 * 1024)
STATIC StaticTask_t mp_task_tcb;
STATIC StackType_t mp_task_stack[MP_TASK_STACK_LEN] __attribute__((aligned (8)));