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
Traceback (most recent call last):
File "app.py", line 23, in <module>
File "lvgl/demo1/export/ui.py", line 227, in <module>
SyntaxError: Cannot convert 'function' to pointer!
In the generated lv_mpy.c the error is thrown by:
event_cb = mp_to_ptr() won't accept a function, the exception is thrown from
I've attempted to build against LVGL v9.2.0 and while it compiles, I get an error thrown at runtime from code like:
The
add_event_cb()
function throws:In the generated
lv_mpy.c
the error is thrown by:event_cb = mp_to_ptr()
won't accept a function, the exception is thrown fromlv_binding_micropython/gen/gen_mpy.py
Line 1355 in 96d6d35
I've bisected lvgl and narrowed down this change in behavior to lvgl/lvgl@1d14386b
Before this it works fine.
The text was updated successfully, but these errors were encountered: