Skip to content

Commit

Permalink
PicoSystem: HACK: Add _logo, rename reset.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Oct 20, 2021
1 parent b39e918 commit dfbcfc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ports/rp2/boards/PIMORONI_PICOSYSTEM/board_builtin.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ enum _sprites_ids {
{ MP_ROM_QSTR(MP_QSTR_pen), MP_ROM_PTR(&picosystem_pen_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_tick), MP_ROM_PTR(&picosystem_tick_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_init), MP_ROM_PTR(&picosystem_init_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_reset), MP_ROM_PTR(&picosystem_reset_obj) }, \
{ MP_ROM_QSTR(MP_QSTR__reset), MP_ROM_PTR(&picosystem_reset_obj) }, \
{ MP_ROM_QSTR(MP_QSTR__logo), MP_ROM_PTR(&picosystem_logo_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_stats), MP_ROM_PTR(&picosystem_stats_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_play), MP_ROM_PTR(&picosystem_play_obj) }, \
{ MP_ROM_QSTR(MP_QSTR_clip), MP_ROM_PTR(&picosystem_clip_obj) }, \
Expand Down
1 change: 1 addition & 0 deletions py/builtin.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ extern const mp_obj_type_t PicosystemVoice_type;
MP_DECLARE_CONST_FUN_OBJ_0(picosystem_init_obj);
MP_DECLARE_CONST_FUN_OBJ_0(picosystem_reset_obj);
MP_DECLARE_CONST_FUN_OBJ_0(picosystem_tick_obj);
MP_DECLARE_CONST_FUN_OBJ_0(picosystem_logo_obj);

// stats.cpp

Expand Down

0 comments on commit dfbcfc0

Please sign in to comment.