You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
since the latest micropython makes all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE (micropython/micropython@662b976), the gen_mpy.py must be modified to use MP_DEFINE_CONST_OBJ_TYPE. The mp_lv_obj_types is assumed to use items with a fixed length, which make it hard to migrate.
The text was updated successfully, but these errors were encountered:
lv_micropython and lv_binding_micropython follow the official Micropython releases.
Latest Micropython release as of today is v1.19.1 and lv_micropython/lv_binding_micropython are compatible with it.
When a new Micropython version is released, I'll adap lv_micropython and lv_binding_micropython to it.
In the meanwhile, you can try using the changes in #242 which include the MP_DEFINE_CONST_OBJ_TYPE modification.
since the latest micropython makes all mp_obj_type_t defs use
MP_DEFINE_CONST_OBJ_TYPE
(micropython/micropython@662b976), the gen_mpy.py must be modified to use MP_DEFINE_CONST_OBJ_TYPE. Themp_lv_obj_types
is assumed to use items with a fixed length, which make it hard to migrate.The text was updated successfully, but these errors were encountered: