1 /*
2  * Copyright 2014-2016 Freescale Semiconductor, Inc.
3  * Copyright 2016-2018 NXP
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  */
8 
9 #ifndef __FSL_DEVICE_REGISTERS_H__
10 #define __FSL_DEVICE_REGISTERS_H__
11 
12 /*
13  * Include the cpu specific register header files.
14  *
15  * The CPU macro should be declared in the project or makefile.
16  */
17 #if (defined(CPU_LPC54S018JBD208) || defined(CPU_LPC54S018JET180))
18 
19 #define LPC54S018_SERIES
20 
21 /* CMSIS-style register definitions */
22 #include "LPC54S018.h"
23 /* CPU specific feature definitions */
24 #include "LPC54S018_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