MCPcopy Create free account
hub / github.com/FastLED/FastLED / delay

Function delay

src/fl/system/delay.h:98–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96/// @param run_async If true, pump async tasks during delay (only on platforms with SKETCH_HAS_LARGE_MEMORY==1)
97template<int Dummy = 0>
98inline void delay(u32 ms, bool run_async = true) FL_NOEXCEPT {
99 (void)Dummy;
100 detail::delay_impl(ms, run_async);
101}
102
103/// Delay for a given number of milliseconds (legacy - no async pumping)
104/// @param ms Milliseconds to delay

Callers 2

delay_implFunction · 0.70
scopedWatchdogPause3sFunction · 0.50

Calls 1

delay_implFunction · 0.85

Tested by

no test coverage detected