/**************************************************************************//** * @file core_cr7.h * @brief CMSIS Cortex-R7 Core Peripheral Access Layer Header File * @version V1.0.0 * @date 17. October 2019 ******************************************************************************/ /* * Copyright (c) 2009-2018 ARM Limited. All rights reserved. * Copyright (c) 2019 Stephanos Ioannidis * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #if defined ( __ICCARM__ ) #pragma system_include /* treat file as system include file for MISRA check */ #elif defined (__clang__) #pragma clang system_header /* treat file as system include file */ #endif #ifndef __CORE_CR7_H_GENERIC #define __CORE_CR7_H_GENERIC #ifdef __cplusplus extern "C" { #endif #define __CORTEX_R 7U /* Configuration of the Cortex-R7 Processor and Core Peripherals */ #ifndef __CR_REV #define __CR_REV 0U #endif #ifndef __FPU_PRESENT #define __FPU_PRESENT 0U #endif #ifndef __GIC_PRESENT #define __GIC_PRESENT 1U #endif #ifndef __TIM_PRESENT #define __TIM_PRESENT 1U #endif #define __MPU_PRESENT 1U /* Include Cortex-R Common Peripheral Access Layer header */ #include "core_cr.h" #ifdef __cplusplus } #endif #endif /* __CORE_CR7_H_GENERIC */