Skip to content
Snippets Groups Projects
Commit c6b8750c authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266: Use dedicated heap allocated as static array.

We cannot assume that all memory belongs to us - it actually belongs to
ESP8266 OS.
parent d2d64f00
No related branches found
No related tags found
No related merge requests found
......@@ -38,11 +38,13 @@
#include "gccollect.h"
#include MICROPY_HAL_H
STATIC char heap[16384];
void user_init(void) {
soft_reset:
mp_stack_set_limit(10240);
mp_hal_init();
gc_init(&_heap_start, &_heap_end);
gc_init(heap, heap + sizeof(heap));
gc_collect_init();
mp_init();
mp_obj_list_init(mp_sys_path, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment