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

◆ memset_zero_byte()

FL_OPTIMIZE_FUNCTION FL_IRAM FASTLED_FORCE_INLINE void fl::isr::memset_zero_byte ( u8 * dest,
size_t count )

ISR-safe memset replacement (byte-by-byte zero)

Parameters
destDestination pointer
countNumber of bytes to zero

Definition at line 110 of file memcpy.h.

110 {
111 for (size_t i = 0; i < count; i++) {
112 dest[i] = 0x0;
113 }
114}

Referenced by memset_zero(), and memset_zero_word().

+ Here is the caller graph for this function: