diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-11 09:33:19 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-16 10:10:13 +0200 |
commit | 7d6b6f66811b4424f9e353205b4416c4c64d772e (patch) | |
tree | 7e7cf947f769d2a94dddd5f21acd715b5493a61f /tests/wipy/uart.py.exp | |
parent | 4ba9b340124e59ccc9d3daa3269132d9e4e6b7d3 (diff) | |
download | micropython-7d6b6f66811b4424f9e353205b4416c4c64d772e.tar.gz micropython-7d6b6f66811b4424f9e353205b4416c4c64d772e.zip |
cc3200: Make UART choose default id when not given.
Diffstat (limited to 'tests/wipy/uart.py.exp')
-rw-r--r-- | tests/wipy/uart.py.exp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/wipy/uart.py.exp b/tests/wipy/uart.py.exp index 8e7da99f63..6f0ea80bec 100644 --- a/tests/wipy/uart.py.exp +++ b/tests/wipy/uart.py.exp @@ -1,5 +1,10 @@ UART(0, baudrate=38400, bits=8, parity=None, stop=1) UART(1, baudrate=38400, bits=8, parity=None, stop=1) +UART(0, baudrate=9600, bits=8, parity=None, stop=1) +UART(0, baudrate=38400, bits=8, parity=None, stop=1) +UART(0, baudrate=9600, bits=8, parity=None, stop=1) +UART(1, baudrate=9600, bits=8, parity=None, stop=1) +UART(1, baudrate=57600, bits=8, parity=None, stop=1) UART(0, baudrate=1000000, bits=8, parity=None, stop=1) UART(1, baudrate=1000000, bits=8, parity=None, stop=1) True @@ -40,6 +45,7 @@ Exception Exception Exception Exception +Exception UART(0) UART(0, baudrate=115200, bits=8, parity=None, stop=1) UART(1) |