Defines for the Helper Macros.
|
| #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.
|
| |
◆ CY_UNUSED_PARAM
| #define CY_UNUSED_PARAM |
( |
|
a | ) |
(void)(a) |
Suppresses the unused parameter warning.
- Note
- This macro is available for devices having M33SYSCPUSS IP.
◆ CY_ARRAY_SIZE
| #define CY_ARRAY_SIZE |
( |
|
x | ) |
(sizeof(x) / sizeof((x)[0])) |
Returns the size of Array.
- Parameters
-
- Note
- This macro is available for devices having M33SYSCPUSS IP.