Commit 9e2dd931 authored by Damien George's avatar Damien George

esp8266/ets_alt_task: Process idle callback if no other events occurred.

parent 485514f5
......@@ -166,6 +166,11 @@ bool ets_loop_iter(void) {
}
ets_intr_unlock();
}
if (!progress && idle_cb) {
idle_cb(idle_arg);
}
return progress;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment