| 108 | /// @param count Number of bytes to zero |
| 109 | FL_OPTIMIZE_FUNCTION FL_IRAM FASTLED_FORCE_INLINE |
| 110 | void memset_zero_byte(u8* dest, size_t count) { |
| 111 | for (size_t i = 0; i < count; i++) { |
| 112 | dest[i] = 0x0; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /// @brief ISR-safe word-aligned memset (4-byte writes) |
| 117 | /// @param dest Destination pointer (must be 4-byte aligned) |
no outgoing calls
no test coverage detected