8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c7fe2 commit f17124bCopy full SHA for f17124b
ports/tc32/main.c
@@ -72,13 +72,11 @@ MP_NOINLINE static void hard_init() {
72
MP_NOINLINE static void soft_init() {
73
74
/* The Telink SDK doesn't define any symbols for these, so we just hard code
75
- * it. The stack starts at the end of memory, 0x80c000. We leave 1kB for it,
76
- * meaning that our heap needs to end at 0x80bc00. */
77
- gc_init((void *)&_end_bss_, (void *)0x80bc00);
+ * it. The stack starts at the end of memory, 0x80c000. We leave 2kB for it,
+ * meaning that our heap needs to end at 0x80b800. */
+ gc_init((void *)&_end_bss_, (void *)0x80b800);
78
mp_init();
79
machine_init();
80
-
81
- mp_deinit();
82
}
83
84
MP_NOINLINE static void repl() {
0 commit comments