initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "fl/stdint.h"
#include "fl/int.h"
// Conversion from FastLED timings to the type found in datasheets.
inline void convert_fastled_timings_to_timedeltas(fl::u16 T1, fl::u16 T2,
fl::u16 T3, fl::u16 *T0H,
fl::u16 *T0L, fl::u16 *T1H,
fl::u16 *T1L) {
*T0H = T1;
*T0L = T2 + T3;
*T1H = T1 + T2;
*T1L = T3;
}