 |
Speeduino
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
16#if defined(NATIVE_BOARD)
23 (sizeof((x)) / sizeof ((x)[0]))
27#if !defined(_end_range_address)
28#define _end_range_address(array) \
29 ((array) + _countof((array)))
33#if !defined(_end_range_byte_address)
34#define _end_range_byte_address(array) \
35 (((byte*)(array)) + sizeof((array)))
46#define PP_INC_I(x) PP_INC_ ## x
64#define CAT_HELPER(a, b) a ## b
74#define BEGIN_LTO_ALWAYS_INLINE(returnType) \
75 _Pragma("GCC diagnostic push") \
76 _Pragma("GCC diagnostic ignored \"-Wattributes\"") \
77 returnType __attribute__((always_inline))
78#define END_LTO_INLINE() \
79 _Pragma("GCC diagnostic pop")