tests: Update pyb/uart.py test since baudrate of 1200 is too low.

This commit is contained in:
Damien George 2015-02-27 00:40:08 +00:00
parent 4852e09c79
commit b67253e96f
2 changed files with 2 additions and 2 deletions

View file

@ -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())

View file

@ -1,5 +1,5 @@
UART(1, baudrate=9600, bits=8, parity=None, stop=1, timeout=1000, timeout_char=0, read_buf_len=64)
UART(1, baudrate=1200, bits=8, parity=None, stop=1, timeout=1000, timeout_char=0, read_buf_len=64)
UART(1, baudrate=2400, bits=8, parity=None, stop=1, timeout=1000, timeout_char=0, read_buf_len=64)
False
3
4