 |
Speeduino
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
17 (sizeof((x)) / sizeof ((x)[0]))
21#if !defined(_end_range_address)
22#define _end_range_address(array) \
23 ((array) + _countof((array)))
27#if !defined(_end_range_byte_address)
28#define _end_range_byte_address(array) \
29 (((byte*)(array)) + sizeof((array)))
40#define PP_INC_I(x) PP_INC_ ## x
58#define CAT_HELPER(a, b) a ## b
68#define BEGIN_LTO_ALWAYS_INLINE(returnType) \
69 _Pragma("GCC diagnostic push") \
70 _Pragma("GCC diagnostic ignored \"-Wattributes\"") \
71 returnType __attribute__((always_inline))
72#define END_LTO_INLINE() \
73 _Pragma("GCC diagnostic pop")