Files
klubhaus-doorbell/libraries/FastLED/src/platforms/stub/clockless_stub.h
2026-02-12 00:45:31 -08:00

10 lines
250 B
C

#pragma once
#if defined(__EMSCRIPTEN__)
#include "platforms/wasm/clockless.h"
#elif defined(FASTLED_STUB_IMPL)
#include "platforms/stub/clockless_stub_generic.h"
#else
#error "This file should only be included for stub or emscripten builds"
#endif