1 /* 2 * Copyright 2014-2016 Freescale Semiconductor, Inc. 3 * Copyright 2016-2023 NXP 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __FSL_DEVICE_REGISTERS_H__ 9 #define __FSL_DEVICE_REGISTERS_H__ 10 11 /* 12 * Include the cpu specific register header files. 13 * 14 * The CPU macro should be declared in the project or makefile. 15 */ 16 #if (defined(CPU_MCXN236VDF) || defined(CPU_MCXN236VNL)) 17 18 #define MCXN236_SERIES 19 20 /* CMSIS-style register definitions */ 21 #include "MCXN236.h" 22 /* CPU specific feature definitions */ 23 #include "MCXN236_features.h" 24 25 #else 26 #error "No valid CPU defined!" 27 #endif 28 29 #endif /* __FSL_DEVICE_REGISTERS_H__ */ 30 31 /******************************************************************************* 32 * EOF 33 ******************************************************************************/ 34