Questions tagged [task]
The task tag has no summary.
9 questions
0
votes
1
answer
227
views
Tasks in ESP32: guidelines rather than blink example
I'm using an ESP8266 for IOT devices.
I wish to work with an ESP32 and harvest its benefits - for my uses managing WiFi and MQTT connectivity.
Most tasks examples are very basic and quite the same (...
4
votes
1
answer
409
views
Scheduler comparison for Arduino Uno
I understand that the official Arduino Scheduler doesn't support Uno, and there are several third-party schedulers to fill the gap, notably, Scheduler, Arduino-Scheduler and TaskScheduler. There are ...
1
vote
2
answers
291
views
Estimating CPU load of a task scheduler
First off, I should note that I'm not sure what tags best apply here, and I can't seem to find any that relate to schedulers, etc. Please inform me if they are not the right ones.
I have a simple, ...
2
votes
1
answer
1k
views
FreeRTOS : Create Tasks but don't start Scheduler [closed]
I'm using FreeRTOs on Arduino for the first time. In my setup(), i would like to create my tasks but i have few more configuration to do after so i would like to create my tasks but don't start the ...
2
votes
2
answers
774
views
Is there a way to pause Program execution?
I understand that Arduino programming is procedural and not so much Object Orientated and also that the Arduino or AVR are only single core processors and any kind of "Multitasking" or "Threading" is ...