FastLED 3.9.15
Loading...
Searching...
No Matches

◆ sys_yield()

static void fl::sys_yield ( )
static

Definition at line 21 of file yield.cpp.hpp.

21 {
22 // Pure OS-level yield — no FastLED subsystem pumping.
23#ifdef FL_IS_ESP32
24 vTaskDelay(0);
25#elif FASTLED_MULTITHREADED
26 std::this_thread::yield(); // okay std namespace
27#endif
28 // Single-threaded non-RTOS platforms: no-op
29}

Referenced by yield().

+ Here is the caller graph for this function: