diff options
author | Damien George <damien.p.george@gmail.com> | 2017-05-16 17:44:14 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-05-16 17:44:14 +1000 |
commit | a004554dc168049f3656480c7b34608741f76765 (patch) | |
tree | 46ddc6552441fa57e4c27ed1bf126a90b8092f73 | |
parent | 37bd3b4f4cbbfabc86b03f8df8a3047fa2b65dd1 (diff) | |
download | micropython-a004554dc168049f3656480c7b34608741f76765.tar.gz micropython-a004554dc168049f3656480c7b34608741f76765.zip |
stmhal/modmachine: Remove TODO comment that is now implemented.
-rw-r--r-- | stmhal/modmachine.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stmhal/modmachine.c b/stmhal/modmachine.c index 40b5b7bf3e..c5444ec980 100644 --- a/stmhal/modmachine.c +++ b/stmhal/modmachine.c @@ -554,8 +554,6 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = { { MP_ROM_QSTR(MP_QSTR_RTC), MP_ROM_PTR(&pyb_rtc_type) }, { MP_ROM_QSTR(MP_QSTR_ADC), MP_ROM_PTR(&pyb_adc_type) }, #endif - // TODO: Per new API, I2C types below, if called with 1 arg (ID), should still - // initialize master mode on the peripheral. { MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&machine_i2c_type) }, { MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&machine_hard_spi_type) }, { MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&pyb_uart_type) }, |