File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -333,6 +333,9 @@ SRC_SHARED_MODULE = \
333333 busio/OneWire.c \
334334 gamepad/__init__.c \
335335 gamepad/GamePad.c \
336+ _stage/__init__.c \
337+ _stage/Layer.c \
338+ _stage/Text.c \
336339 os/__init__.c \
337340 random/__init__.c \
338341 storage/__init__.c \
Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ extern const struct _mp_obj_module_t uheap_module;
173173extern const struct _mp_obj_module_t ustack_module ;
174174extern const struct _mp_obj_module_t supervisor_module ;
175175extern const struct _mp_obj_module_t gamepad_module ;
176+ extern const struct _mp_obj_module_t stage_module ;
176177extern const struct _mp_obj_module_t touchio_module ;
177178extern const struct _mp_obj_module_t usb_hid_module ;
178179
@@ -214,6 +215,7 @@ extern const struct _mp_obj_module_t usb_hid_module;
214215// { MP_OBJ_NEW_QSTR(MP_QSTR_analogio), (mp_obj_t)&analogio_module },
215216
216217// { MP_OBJ_NEW_QSTR(MP_QSTR_gamepad),(mp_obj_t)&gamepad_module },
218+ // { MP_OBJ_NEW_QSTR(MP_QSTR__stage), (mp_obj_t)&stage_module },
217219// { MP_OBJ_NEW_QSTR(MP_QSTR_usb_hid),(mp_obj_t)&usb_hid_module },
218220
219221
You can’t perform that action at this time.
0 commit comments