Defines for the Helper Macros.
Macros | |
| #define | CY_UNUSED_PARAM(a) (void)(a) |
| Suppresses the unused parameter warning. More... | |
| #define | CY_ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) |
| Returns the size of Array. More... | |
| #define CY_UNUSED_PARAM | ( | a | ) | (void)(a) |
Suppresses the unused parameter warning.
| #define CY_ARRAY_SIZE | ( | x | ) | (sizeof(x) / sizeof((x)[0])) |
Returns the size of Array.
| x | Array Name |