FastLED 3.9.15
Loading...
Searching...
No Matches
sketch_macros.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(__AVR__) \
4 || defined(__AVR_ATtiny85__) \
5 || defined(__AVR_ATtiny88__) \
6 || defined(__AVR_ATmega32U4__) \
7 || defined(ARDUINO_attinyxy6) \
8 || defined(ARDUINO_attinyxy4) \
9 || defined(ARDUINO_TEENSYLC) \
10 || defined(ARDUINO_TEENSY30) \
11 || defined(__MK20DX128__) \
12 || defined(__MK20DX256__) \
13 || defined(STM32F1) \
14 || defined(ESP8266) \
15 || defined(ARDUINO_ARCH_RENESAS_UNO) \
16 || defined(ARDUINO_BLUEPILL_F103C8)
17#define SKETCH_HAS_LOTS_OF_MEMORY 0
18#else
19#define SKETCH_HAS_LOTS_OF_MEMORY 1
20#endif
21
22#ifndef FASTLED_STRINGIFY
23#define FASTLED_STRINGIFY_HELPER(x) #x
24#define FASTLED_STRINGIFY(x) FASTLED_STRINGIFY_HELPER(x)
25#endif