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