RTEMS 6.1-rc7
Loading...
Searching...
No Matches
fsl_device_registers.h
1/*
2 * Copyright 2014-2016 Freescale Semiconductor, Inc.
3 * Copyright 2016-2018 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#ifdef __rtems__
14#include <bspopts.h>
15#endif /* __rtems__ */
16/*
17 * Include the cpu specific register header files.
18 *
19 * The CPU macro should be declared in the project or makefile.
20 */
21#if (defined(CPU_MIMXRT1052CVJ5B) || defined(CPU_MIMXRT1052CVL5B) || defined(CPU_MIMXRT1052DVJ6B) || \
22 defined(CPU_MIMXRT1052DVL6B))
23
24#define MIMXRT1052_SERIES
25
26/* CMSIS-style register definitions */
27#include "MIMXRT1052.h"
28/* CPU specific feature definitions */
29#include "MIMXRT1052_features.h"
30
31#else
32 #error "No valid CPU defined!"
33#endif
34
35#endif /* __FSL_DEVICE_REGISTERS_H__ */
36
37/*******************************************************************************
38 * EOF
39 ******************************************************************************/
CMSIS Peripheral Access Layer for MIMXRT1052.