1 /*
2  * Copyright 2014-2016 Freescale Semiconductor, Inc.
3  * Copyright 2016-2020 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_MIMXRT533SFAWC) || defined(CPU_MIMXRT533SFFOC))
19 
20 #define MIMXRT533S_SERIES
21 
22 /* CMSIS-style register definitions */
23 #include "MIMXRT533S.h"
24 /* CPU specific feature definitions */
25 #include "MIMXRT533S_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