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