Replies: 1 comment
-
This probably happens because there is no MicroPython thread running on this RTOS task and therefore nothing to catch unhandled exceptions. Depending on what you need to do, one way around this is to schedule a MicroPython function call instead of calling it directly. This was discussed recently in https://github.com/orgs/micropython/discussions/12596. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I used "esp_event_loop_create_default()" to create an EventLoop, but when calling Micropython's functions through "mp_call_function_1" in the EventLoop trigger function, an error of "NLR jump failed" is reported. It seems that the problem is still in the context. If you call the "mp_call_function_1" function in the Task of FreeRTOS?
Beta Was this translation helpful? Give feedback.
All reactions