Flags controlling which subsystems run() pumps.
- TASKS: Scheduler (fl::task timers) + Executor (fetch, HTTP server)
- COROUTINES: Platform coroutines (pumpCoroutines — ESP32: vTaskDelay, Teensy: cooperative context switch, Stub: thread run)
- SYSTEM: Pure OS-level yield (vTaskDelay(0) on ESP32, thread yield on host)
- ALL: All subsystems (default)
| Enumerator |
|---|
| TASKS | |
| COROUTINES | |
| SYSTEM | |
| ALL | |
Definition at line 66 of file executor.h.
70 ALL = (1 << 0) | (1 << 1) | (1 << 2)
71};