add half_duplex to busio.SPI signature

This commit is contained in:
Dan Halbert 2022-02-09 14:20:46 -05:00
parent da035fe958
commit c4e54ce671
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
//| multiple secondaries can share the `!clock`, `!MOSI` and `!MISO` lines
//| and therefore the hardware.)"""
//|
//| def __init__(self, clock: microcontroller.Pin, MOSI: Optional[microcontroller.Pin] = None, MISO: Optional[microcontroller.Pin] = None) -> None:
//| def __init__(self, clock: microcontroller.Pin, MOSI: Optional[microcontroller.Pin] = None, MISO: Optional[microcontroller.Pin] = None, half_duplex: bool = False) -> None:
//|
//| """Construct an SPI object on the given pins.
//|