File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,13 @@ extern const struct _mp_obj_module_t os_module;
360
360
#define OS_MODULE_ALT_NAME
361
361
#endif
362
362
363
+ #if CIRCUITPY_PEW
364
+ extern const struct _mp_obj_module_t pew_module ;
365
+ #define PEW_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR__pew),(mp_obj_t)&pew_module },
366
+ #else
367
+ #define PEW_MODULE
368
+ #endif
369
+
363
370
#if CIRCUITPY_PIXELBUF
364
371
extern const struct _mp_obj_module_t pixelbuf_module ;
365
372
#define PIXELBUF_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR__pixelbuf),(mp_obj_t)&pixelbuf_module },
@@ -474,13 +481,6 @@ extern const struct _mp_obj_module_t ustack_module;
474
481
#define USTACK_MODULE
475
482
#endif
476
483
477
- #if CIRCUITPY_PEW
478
- extern const struct _mp_obj_module_t pew_module ;
479
- #define PEW_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR__pew),(mp_obj_t)&pew_module },
480
- #else
481
- #define PEW_MODULE
482
- #endif
483
-
484
484
// These modules are not yet in shared-bindings, but we prefer the non-uxxx names.
485
485
#if MICROPY_PY_UERRNO
486
486
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
@@ -546,6 +546,7 @@ extern const struct _mp_obj_module_t pew_module;
546
546
PULSEIO_MODULE \
547
547
RANDOM_MODULE \
548
548
RE_MODULE \
549
+ ROTARYIO_MODULE \
549
550
RTC_MODULE \
550
551
SAMD_MODULE \
551
552
STAGE_MODULE \
You can’t perform that action at this time.
0 commit comments