File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
shared-bindings/bitbangio Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ STATIC mp_obj_t bitbangio_spi_readinto(size_t n_args, const mp_obj_t *args) {
236
236
}
237
237
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN (bitbangio_spi_readinto_obj , 2 , 2 , bitbangio_spi_readinto );
238
238
239
- //| .. method:: SPI.write_readinto(buf_in, buf_out )
239
+ //| .. method:: SPI.write_readinto(buffer_out, buffer_in )
240
240
//|
241
241
//| Write out the data in ``buffer_out`` while simultaneously reading data into ``buffer_in``.
242
242
STATIC mp_obj_t bitbangio_spi_write_readinto (size_t n_args , const mp_obj_t * args ) {
@@ -279,7 +279,7 @@ STATIC const mp_rom_map_elem_t bitbangio_spi_locals_dict_table[] = {
279
279
280
280
{ MP_ROM_QSTR (MP_QSTR_readinto ), MP_ROM_PTR (& bitbangio_spi_readinto_obj ) },
281
281
{ MP_ROM_QSTR (MP_QSTR_write ), MP_ROM_PTR (& bitbangio_spi_write_obj ) },
282
- { MP_ROM_QSTR (MP_QSTR_write_readinto ), MP_ROM_PTR (& bitbangio_spi_write_readinto_obj ) },
282
+ { MP_ROM_QSTR (MP_QSTR_write_readinto ), MP_ROM_PTR (& bitbangio_spi_write_readinto_obj ) },
283
283
};
284
284
STATIC MP_DEFINE_CONST_DICT (bitbangio_spi_locals_dict , bitbangio_spi_locals_dict_table );
285
285
You can’t perform that action at this time.
0 commit comments