Skip to content

Commit

Permalink
Disable UART terminal (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewWilkes committed May 31, 2022
1 parent 146afef commit 6cfc286
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions micropython.diff
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand All @@ -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();
Expand Down

0 comments on commit 6cfc286

Please sign in to comment.