481d714bd5
UART object now uses a stream-like interface: read, readall, readline, readinto, readchar, write, writechar. Timeouts are configured when the UART object is initialised, using timeout and timeout_char keyword args. The object includes optional read buffering, using interrupts. You can set the buffer size dynamically using read_buf_len keyword arg. A size of 0 disables buffering.
15 lines
245 B
Python
15 lines
245 B
Python
from pyb import UART
|
|
|
|
uart = UART(1)
|
|
uart = UART(1, 9600)
|
|
uart = UART(1, 9600, bits=8, parity=None, stop=1)
|
|
print(uart)
|
|
|
|
uart.init(1200)
|
|
print(uart)
|
|
|
|
print(uart.any())
|
|
print(uart.write('123'))
|
|
print(uart.write(b'abcd'))
|
|
print(uart.writechar(1))
|