From 6cfc286dc0d7a446140f8024a6923796632d14a9 Mon Sep 17 00:00:00 2001 From: Matthew Wilkes Date: Tue, 31 May 2022 16:29:35 +0200 Subject: [PATCH] Disable UART terminal (temporary) --- micropython.diff | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/micropython.diff b/micropython.diff index 6c48db4..049e31f 100644 --- a/micropython.diff +++ b/micropython.diff @@ -26,10 +26,10 @@ index a1c27c0a2..56b145478 100644 size_t mp_task_heap_size; diff --git a/ports/esp32/mphalport.c b/ports/esp32/mphalport.c -index 41e6e6ec0..761e93c01 100644 +index 41e6e6ec0..085af7441 100644 --- a/ports/esp32/mphalport.c +++ b/ports/esp32/mphalport.c -@@ -107,13 +107,8 @@ void mp_hal_stdout_tx_strn(const char *str, size_t len) { +@@ -107,13 +107,7 @@ void mp_hal_stdout_tx_strn(const char *str, size_t len) { if (release_gil) { MP_THREAD_GIL_EXIT(); } @@ -38,7 +38,7 @@ index 41e6e6ec0..761e93c01 100644 - #elif CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG - usb_serial_jtag_tx_strn(str, len); - #else - uart_stdout_tx_strn(str, len); +- uart_stdout_tx_strn(str, len); - #endif if (release_gil) { MP_THREAD_GIL_ENTER();