8000 esp32/main: Bump heap size from 64k to 96k. · nickzoic/micropython-esp32@ef9a274 · GitHub
[go: up one dir, main page]

Skip to content

Commit ef9a274

Browse files
committed
esp32/main: Bump heap size from 64k to 96k.
1 parent 4b42e72 commit ef9a274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp32/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#define MP_TASK_PRIORITY (ESP_TASK_PRIO_MIN + 1)
5151
#define MP_TASK_STACK_SIZE (16 * 1024)
5252
#define MP_TASK_STACK_LEN (MP_TASK_STACK_SIZE / sizeof(StackType_t))
53-
#define MP_TASK_HEAP_SIZE (64 * 1024)
53+
#define MP_TASK_HEAP_SIZE (96 * 1024)
5454

5555
//STATIC StaticTask_t mp_task_tcb;
5656
//STATIC StackType_t mp_task_stack[MP_TASK_STACK_LEN] __attribute__((aligned (8)));

0 commit comments

Comments
 (0)
0