FastLED 3.7.8
Loading...
Searching...
No Matches
force_inline.h
1#pragma once
2
3// Please note that on Attiny85 etc... this compiler is like
4// honey badger when it comes to inline. It doesn't care what
5// you declare as forced inline as it will completely ignore whatever
6// you tell it to do and do what it wants instead to compact code
7// size to the absolute minimum that it can. And this is a good thing
8// because the size reduction used by this compiler is world class...
9// and it needs to be this way or things won't fit in the extremely
10// tiny memory size that it has available.
11#define FASTLED_FORCE_INLINE __attribute__((always_inline)) inline