Fix Esp32 issue with Sming tasks not getting handled at startup#2972
Fix Esp32 issue with Sming tasks not getting handled at startup#2972slaff merged 1 commit intoSmingHub:developfrom
Conversation
PR Summary
|
185ee74 to
6de9152
Compare
|
@slaff The CI failures in jerryscript really need it updating to a more recent version. I'm prepping v3 for that, will have a PR for you shortly. |
Messages can be queued before task loop initialised, so kick tcpip thread when it is
d252fbb to
8880d0f
Compare
Issue #2971 revealed a problem with the task queue where the
onReadycallback never gets called.The callback gets queued but the event loop is created afterwards and lacked a 'kick' to the tcpip thread to start message processing.
This bug has been present since PR #2913.