summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--zephyr/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/zephyr/main.c b/zephyr/main.c
index f8e48e61e8..250e51a2f5 100644
--- a/zephyr/main.c
+++ b/zephyr/main.c
@@ -67,6 +67,7 @@ int real_main(void) {
// Should be set to stack size in prj.mdef minus fuzz factor
mp_stack_set_limit(3584);
+soft_reset:
#if MICROPY_ENABLE_GC
gc_init(heap, heap + sizeof(heap));
#endif
@@ -89,7 +90,9 @@ int real_main(void) {
}
}
- mp_deinit();
+ printf("soft reboot\n");
+ goto soft_reset;
+
return 0;
}