Anatoli Arkhipenko

Results 45 comments of Anatoli Arkhipenko
trafficstars

However, this presents a challenge will `millis` rollover: Case 1: (all good) task started at 3000 and finished at 3500 Case 2: task started and have not finished yet: start...

> You can assign -1 to tasks that have never been executed or activated. Cannot use negative numbers - `millis()` is `uint32_t`

Actually, this is very easy to implement in your code without updates to the library: You can use `TASK_LTS` - local task storage pointer to store the `millis()` value when...

Hi, Which version of TaskSxheduler are you running. I believe I disabled light sleep in the latest version since yes, it causes WiFi issues. Simple `delay(1)` (or `vTaskDelay(1)` ) works...

This would be very difficult to implement. I would try FreeRTOS tickless to do something like this in combination with the TASK_TICKLESS (example to follow) Please submit a PR if...