Browse Source

tests/wipy: Disable the REPL on UART before running the UART test.

pull/1458/head
Daniel Campora 9 years ago
parent
commit
d265df589e
  1. 3
      tests/wipy/uart.py

3
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)

Loading…
Cancel
Save