diff options
Diffstat (limited to 'tests/pyb/uart.py')
-rw-r--r-- | tests/pyb/uart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/uart.py b/tests/pyb/uart.py index c83d18349e..dff5a56878 100644 --- a/tests/pyb/uart.py +++ b/tests/pyb/uart.py @@ -5,7 +5,7 @@ uart = UART(1, 9600) uart = UART(1, 9600, bits=8, parity=None, stop=1) print(uart) -uart.init(1200) +uart.init(2400) print(uart) print(uart.any()) |