Turn off LED after REPL
This commit is contained in:
parent
5c33c9d597
commit
6164d44e6d
5
main.c
5
main.c
|
@ -647,6 +647,11 @@ STATIC int run_repl(void) {
|
||||||
exit_code = pyexec_friendly_repl();
|
exit_code = pyexec_friendly_repl();
|
||||||
}
|
}
|
||||||
cleanup_after_vm(heap);
|
cleanup_after_vm(heap);
|
||||||
|
#if CIRCUITPY_STATUS_LED
|
||||||
|
status_led_init();
|
||||||
|
new_status_color(BLACK);
|
||||||
|
status_led_deinit();
|
||||||
|
#endif
|
||||||
autoreload_resume();
|
autoreload_resume();
|
||||||
return exit_code;
|
return exit_code;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue