Skip to content
Snippets Groups Projects
Commit 7ddd1a58 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/modmachine: Don't expose internal SoftSPI and HSPI classes.

There functionality is available via standard SPI class.
parent 1708fe3c
Branches
No related tags found
No related merge requests found
...@@ -254,8 +254,6 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = { ...@@ -254,8 +254,6 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_ADC), MP_ROM_PTR(&pyb_adc_type) }, { MP_ROM_QSTR(MP_QSTR_ADC), MP_ROM_PTR(&pyb_adc_type) },
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&pyb_uart_type) }, { MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&pyb_uart_type) },
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&machine_i2c_type) }, { MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&machine_i2c_type) },
{ MP_ROM_QSTR(MP_QSTR_SoftSPI), MP_ROM_PTR(&pyb_spi_type) },
{ MP_ROM_QSTR(MP_QSTR_HSPI), MP_ROM_PTR(&pyb_hspi_type) },
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&machine_spi_type) }, { MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&machine_spi_type) },
// wake abilities // wake abilities
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment