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_MKV58F1M0VLL24) || defined(CPU_MKV58F1M0VLQ24) || defined(CPU_MKV58F1M0VMD24) || \
18     defined(CPU_MKV58F512VLL24) || defined(CPU_MKV58F512VLQ24) || defined(CPU_MKV58F512VMD24))
19 
20 #define KV58F24_SERIES
21 
22 /* CMSIS-style register definitions */
23 #include "MKV58F24.h"
24 /* CPU specific feature definitions */
25 #include "MKV58F24_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