1 /* 2 * Copyright 2023 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_SOC_ARM_NXP_S32_COMMON_CMSIS_RTOS_V2_ADAPT_H_ 8 #define ZEPHYR_SOC_ARM_NXP_S32_COMMON_CMSIS_RTOS_V2_ADAPT_H_ 9 10 /* 11 * The HAL is defining these symbols already. To avoid interference 12 * between HAL and the CMSIS RTOS wrapper, redefine them under an enum. 13 */ 14 #undef TRUE 15 #undef FALSE 16 17 enum { FALSE, TRUE}; 18 19 #endif /* ZEPHYR_SOC_ARM_NXP_S32_COMMON_CMSIS_RTOS_V2_ADAPT_H_ */ 20