File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -637,12 +637,7 @@ extern const struct _mp_obj_module_t pwmio_module;
637
637
#define PWMIO_MODULE
638
638
#endif
639
639
640
- #if CIRCUITPY_QRIO
641
- extern const struct _mp_obj_module_t qrio_module ;
642
- #define QRIO_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_qrio), (mp_obj_t)&qrio_module },
643
- #else
644
- #define QRIO_MODULE
645
- #endif
640
+ // CIRCUITPY_QRIO uses MP_REGISTER_MODULE
646
641
647
642
#if CIRCUITPY_RAINBOWIO
648
643
extern const struct _mp_obj_module_t rainbowio_module ;
@@ -930,7 +925,6 @@ extern const struct _mp_obj_module_t msgpack_module;
930
925
PS2IO_MODULE \
931
926
PULSEIO_MODULE \
932
927
PWMIO_MODULE \
933
- QRIO_MODULE \
934
928
RAINBOWIO_MODULE \
935
929
RANDOM_MODULE \
936
930
RE_MODULE \
Original file line number Diff line number Diff line change @@ -161,9 +161,6 @@ STATIC const mp_rom_map_elem_t mp_builtin_module_table[] = {
161
161
{ MP_ROM_QSTR (MP_QSTR_builtins ), MP_ROM_PTR (& mp_module_builtins ) },
162
162
{ MP_ROM_QSTR (MP_QSTR_micropython ), MP_ROM_PTR (& mp_module_micropython ) },
163
163
164
- #if MICROPY_PY_ARRAY
165
- { MP_ROM_QSTR (MP_QSTR_array ), MP_ROM_PTR (& mp_module_array ) },
166
- #endif
167
164
#if MICROPY_PY_IO
168
165
#if CIRCUITPY
169
166
{ MP_ROM_QSTR (MP_QSTR_io ), MP_ROM_PTR (& mp_module_io ) },
You can’t perform that action at this time.
0 commit comments