summaryrefslogtreecommitdiff
path: root/shared-bindings/bitbangio/SPI.c
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-02 13:25:07 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-02 13:25:07 -0400
commit522b17ca93d4e1d64bb113057c8a62992a22c4ab (patch)
tree8c05d048acf8e56b066ac5a27eedf7d8df91d0fd /shared-bindings/bitbangio/SPI.c
parentac113fdc815f31b54d742f73265359787bd95290 (diff)
Made suggested changes
Diffstat (limited to 'shared-bindings/bitbangio/SPI.c')
-rw-r--r--shared-bindings/bitbangio/SPI.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/bitbangio/SPI.c b/shared-bindings/bitbangio/SPI.c
index 2e5a811cf..8b69c04f2 100644
--- a/shared-bindings/bitbangio/SPI.c
+++ b/shared-bindings/bitbangio/SPI.c
@@ -224,7 +224,7 @@ STATIC mp_obj_t bitbangio_spi_write(mp_obj_t self_in, mp_obj_t wr_buf) {
MP_DEFINE_CONST_FUN_OBJ_2(bitbangio_spi_write_obj, bitbangio_spi_write);
-//| def readinto(self, buf: Union[bytes, bytearray, memoryview]) -> None:
+//| def readinto(self, buf: Union[bytearray, memoryview]) -> None:
//| """Read into the buffer specified by ``buf`` while writing zeroes.
//| Requires the SPI being locked.
//| If the number of bytes to read is 0, nothing happens."""
@@ -248,7 +248,7 @@ STATIC mp_obj_t bitbangio_spi_readinto(size_t n_args, const mp_obj_t *args) {
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(bitbangio_spi_readinto_obj, 2, 2, bitbangio_spi_readinto);
-//| def write_readinto(self, buffer_out: Union[bytes, bytearray, memoryview], buffer_in: Union[bytes, bytearray, memoryview], *, out_start: int = 0, out_end: int = None, in_start: int = 0, in_end: int = None) -> None:
+//| def write_readinto(self, buffer_out: Union[bytes, bytearray, memoryview], buffer_in: Union[bytearray, memoryview], *, out_start: int = 0, out_end: int = None, in_start: int = 0, in_end: int = None) -> None:
//| """Write out the data in ``buffer_out`` while simultaneously reading data into ``buffer_in``.
//| The lengths of the slices defined by ``buffer_out[out_start:out_end]`` and ``buffer_in[in_start:in_end]``
//| must be equal.