Skip to content
Snippets Groups Projects
Commit 23300ace authored by iggy's avatar iggy Committed by q3k
Browse files

restored mpy stack size to original size (to fix stack overflow crashes)

parent ab0de4bb
No related branches found
No related tags found
No related merge requests found
......@@ -240,7 +240,7 @@ void app_main(void) {
MICROPY_BOARD_STARTUP();
// Create and transfer control to the MicroPython task.
xTaskCreatePinnedToCore(mp_task, "mp_task", (MP_TASK_STACK_SIZE / sizeof(StackType_t)) / 2, NULL, MP_TASK_PRIORITY, &mp_main_task_handle, MP_TASK_COREID);
xTaskCreatePinnedToCore(mp_task, "mp_task", MP_TASK_STACK_SIZE / sizeof(StackType_t), NULL, MP_TASK_PRIORITY, &mp_main_task_handle, MP_TASK_COREID);
os_app_main(); // ./badge23/ entry point
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment