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_LPC55S36JBD100) || defined(CPU_LPC55S36JHI48))
17 
18 #define LPC55S36_SERIES
19 
20 /* CMSIS-style register definitions */
21 #include "LPC55S36.h"
22 /* CPU specific feature definitions */
23 #include "LPC55S36_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