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,22 @@
#pragma once
// Platform-specific integer type definitions
// This file dispatches to the appropriate platform-specific int.h file
#include "platforms/arm/is_arm.h"
#if defined(ESP32)
#include "platforms/esp/int.h"
#elif defined(__AVR__)
#include "platforms/avr/int.h"
#elif defined(FASTLED_ARM)
// All ARM platforms (Due, Teensy, STM32, nRF52, Apollo3, etc.)
#include "platforms/arm/int.h"
#elif defined(__EMSCRIPTEN__)
// WebAssembly / Emscripten
#include "platforms/wasm/int.h"
#else
// Default platform (desktop/generic)
#include "platforms/shared/int.h"
#endif