From d265df589e66113399eb065deb933d79895ac69e Mon Sep 17 00:00:00 2001 From: Daniel Campora Date: Wed, 9 Sep 2015 22:41:32 +0200 Subject: [PATCH] tests/wipy: Disable the REPL on UART before running the UART test. --- tests/wipy/uart.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/wipy/uart.py b/tests/wipy/uart.py index 24c879218c..d6910eaa1f 100644 --- a/tests/wipy/uart.py +++ b/tests/wipy/uart.py @@ -18,6 +18,9 @@ elif 'WiPy' in machine: else: raise Exception('Board not supported!') +# just in case we have stdio duplicated on any of the uarts +pyb.repl_uart(None) + for uart_id in uart_id_range: uart = UART(uart_id, 38400) print(uart)