FastLED 3.9.3
Loading...
Searching...
No Matches
led_sysdefs.h
Go to the documentation of this file.
1#ifndef __INC_LED_SYSDEFS_H
2#define __INC_LED_SYSDEFS_H
3
4#include "FastLED.h"
5
6#include "fastled_config.h"
7
10
11#if defined(NRF51) || defined(__RFduino__) || defined (__Simblee__)
12#include "platforms/arm/nrf51/led_sysdefs_arm_nrf51.h"
13#elif defined(NRF52_SERIES) || defined(NRF52840_XXAA)
14#include "platforms/arm/nrf52/led_sysdefs_arm_nrf52.h"
15#elif defined(__MK20DX128__) || defined(__MK20DX256__)
16// Include k20/T3 headers
17#include "platforms/arm/k20/led_sysdefs_arm_k20.h"
18#elif defined(__MK66FX1M0__) || defined(__MK64FX512__)
19// Include k66/T3.6 headers
20#include "platforms/arm/k66/led_sysdefs_arm_k66.h"
21#elif defined(__MKL26Z64__)
22// Include kl26/T-LC headers
23#include "platforms/arm/kl26/led_sysdefs_arm_kl26.h"
24#elif defined(__IMXRT1062__)
25// teensy4
26#include "platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h"
27#elif defined(__SAM3X8E__)
28// Include sam/due headers
29#include "platforms/arm/sam/led_sysdefs_arm_sam.h"
30#elif defined(STM32F10X_MD) || defined(__STM32F1__) || defined(STM32F2XX) || defined(STM32F1)
31#include "platforms/arm/stm32/led_sysdefs_arm_stm32.h"
32#elif defined(__SAMD21G18A__) || defined(__SAMD21J18A__) || defined(__SAMD21E17A__) || defined(__SAMD21E18A__)
33#include "platforms/arm/d21/led_sysdefs_arm_d21.h"
34#elif defined(__SAMD51G19A__) || defined(__SAMD51J19A__) || defined(__SAME51J19A__) || defined(__SAMD51P19A__) || defined(__SAMD51P20A__)
35#include "platforms/arm/d51/led_sysdefs_arm_d51.h"
36#elif defined(ARDUINO_ARCH_RP2040) // not sure a pico-sdk define for this
37// RP2040 (Raspberry Pi Pico etc)
38#include "platforms/arm/rp2040/led_sysdefs_arm_rp2040.h"
39#elif defined(ESP8266)
40#include "platforms/esp/8266/led_sysdefs_esp8266.h"
41#elif defined(ESP32)
42#include "platforms/esp/32/led_sysdefs_esp32.h"
43#elif defined(__AVR__) || defined(__AVR_ATmega4809__)
44// AVR platforms
45#include "platforms/avr/led_sysdefs_avr.h"
46#elif defined(ARDUINO_ARCH_APOLLO3)
47// Apollo3 platforms (e.g. the Ambiq Micro Apollo3 Blue as used by the SparkFun Artemis platforms)
48#include "platforms/apollo3/led_sysdefs_apollo3.h"
49#elif defined(ARDUINO_ARCH_RENESAS) || defined(ARDUINO_ARCH_RENESAS_UNO) || defined(ARDUINO_ARCH_RENESAS_PORTENTA)
50#include "platforms/arm/renesas/led_sysdef_arm_renesas.h"
51#elif defined(__x86_64__) || defined(FASTLED_STUB_IMPL) || defined(__APPLE__) || defined(__linux__) || defined(__unix__) || defined(__EMSCRIPTEN__)
52// Not on a microcontroller
53//# ifdef FASTLED_HAS_PRAGMA_MESSAGE
54//# pragma message "Using stub, no data will be written to pins"
55//# else
56//# warning "Using stub, no data will be written to pins"
57//# endif
58#include "platforms/stub/led_sysdefs_stub.h"
59#else
60//
61// We got here because we don't recognize the platform that you're
62// trying to compile for: it's not AVR, or an ESP or ARM that we recognize.
63//
64// If you're reading this because you got the error below,
65// and if this new platform is just a minor variant of an
66// existing supported ARM platform, you may be able to add
67// a new 'defined(XXX)' selector in the apporpriate code above.
68//
69// If this platform is a new microcontroller, see "PORTING.md".
70//
71#error "This platform isn't recognized by FastLED... yet. See comments in FastLED/led_sysdefs.h for options."
72#endif
73
74#include "namespace.h"
75
76// Arduino.h needed for convenience functions digitalPinToPort/BitMask/portOutputRegister and the pinMode methods.
77#if defined(ARDUINO)
78#include <Arduino.h> // ok include
79#endif
80
83#define CLKS_PER_US (F_CPU/1000000)
84
85#endif
central include file for FastLED, defines the CFastLED class/object
Contains definitions that can be used to configure FastLED at compile time.