Commit 711bac51 authored by robert-hh's avatar robert-hh Committed by Damien George

rp2/main: Keep UART REPL with DEBUG=1 and MICROPY_HW_ENABLE_UART_REPL=1.

For builds with DEBUG=1 and MICROPY_HW_ENABLE_UART_REPL=1, calling
stdio_init_all() in main() detaches the UART input from REPL.  This change
suppresses calling stdio_init_all() then.
parent be686e63
...@@ -76,6 +76,10 @@ int main(int argc, char **argv) { ...@@ -76,6 +76,10 @@ int main(int argc, char **argv) {
bi_decl(bi_program_feature("UART REPL")) bi_decl(bi_program_feature("UART REPL"))
setup_default_uart(); setup_default_uart();
mp_uart_init(); mp_uart_init();
#else
#ifndef NDEBUG
stdio_init_all();
#endif
#endif #endif
#if MICROPY_HW_ENABLE_USBDEV #if MICROPY_HW_ENABLE_USBDEV
...@@ -90,10 +94,6 @@ int main(int argc, char **argv) { ...@@ -90,10 +94,6 @@ int main(int argc, char **argv) {
mp_thread_init(); mp_thread_init();
#endif #endif
#ifndef NDEBUG
stdio_init_all();
#endif
// Start and initialise the RTC // Start and initialise the RTC
datetime_t t = { datetime_t t = {
.year = 2021, .year = 2021,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment