File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -333,6 +333,9 @@ SRC_SHARED_MODULE = \
333
333
busio/OneWire.c \
334
334
gamepad/__init__.c \
335
335
gamepad/GamePad.c \
336
+ _stage/__init__.c \
337
+ _stage/Layer.c \
338
+ _stage/Text.c \
336
339
os/__init__.c \
337
340
random/__init__.c \
338
341
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;
173
173
extern const struct _mp_obj_module_t ustack_module ;
174
174
extern const struct _mp_obj_module_t supervisor_module ;
175
175
extern const struct _mp_obj_module_t gamepad_module ;
176
+ extern const struct _mp_obj_module_t stage_module ;
176
177
extern const struct _mp_obj_module_t touchio_module ;
177
178
extern const struct _mp_obj_module_t usb_hid_module ;
178
179
@@ -214,6 +215,7 @@ extern const struct _mp_obj_module_t usb_hid_module;
214
215
// { MP_OBJ_NEW_QSTR(MP_QSTR_analogio), (mp_obj_t)&analogio_module },
215
216
216
217
// { 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 },
217
219
// { MP_OBJ_NEW_QSTR(MP_QSTR_usb_hid),(mp_obj_t)&usb_hid_module },
218
220
219
221
You can’t perform that action at this time.
0 commit comments