+"""
+`busio` - Bus protocol support like I2C and SPI
+=================================================
+
+See `CircuitPython:busio` in CircuitPython for more details.
+
+* Author(s): cefn
+"""
+
from adafruit_blinka import Enum, Lockable, agnostic
class I2C(Lockable):
Parity.ODD = Parity()
Parity.EVEN = Parity()
- # TODO investigate UART receiver_buffer_size as e.g. read_buf_len in https://github.com/micropython/micropython/blob/3eb0694b97c6a8f0e93b874549aac40d8b78b0e5/ports/stm32/uart.c
def __init__(self,
tx,
rx,