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

esp8266/modmachine: Add Pin class from modpyb.

parent eb247eac
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include "py/runtime.h" #include "py/runtime.h"
#include "extmod/machine_mem.h" #include "extmod/machine_mem.h"
#include "utils.h" #include "utils.h"
#include "modpyb.h"
#include "os_type.h" #include "os_type.h"
#include "osapi.h" #include "osapi.h"
...@@ -120,6 +121,7 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = { ...@@ -120,6 +121,7 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_mem32), MP_ROM_PTR(&machine_mem32_obj) }, { MP_ROM_QSTR(MP_QSTR_mem32), MP_ROM_PTR(&machine_mem32_obj) },
{ MP_ROM_QSTR(MP_QSTR_Timer), MP_ROM_PTR(&esp_timer_type) }, { MP_ROM_QSTR(MP_QSTR_Timer), MP_ROM_PTR(&esp_timer_type) },
{ MP_ROM_QSTR(MP_QSTR_Pin), MP_ROM_PTR(&pyb_pin_type) },
}; };
STATIC MP_DEFINE_CONST_DICT(machine_module_globals, machine_module_globals_table); STATIC MP_DEFINE_CONST_DICT(machine_module_globals, machine_module_globals_table);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment