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_LPC5528JBD100) || defined(CPU_LPC5528JBD64) || defined(CPU_LPC5528JEV59) || \ 17 defined(CPU_LPC5528JEV98)) 18 19 #define LPC5528_SERIES 20 21 /* CMSIS-style register definitions */ 22 #include "LPC5528.h" 23 /* CPU specific feature definitions */ 24 #include "LPC5528_features.h" 25 26 #else 27 #error "No valid CPU defined!" 28 #endif 29 30 #endif /* __FSL_DEVICE_REGISTERS_H__ */ 31 32 /******************************************************************************* 33 * EOF 34 ******************************************************************************/ 35