aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-07-07 16:22:40 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-07-07 16:22:40 +0000
commita1457442696ab3f735cd4385d574893e0e97d6d5 (patch)
treef007a4485b98138ffecbf3a31e94e234106a420c /os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h
parent0424a747af6a008eb7530f6f56c7113d7a898188 (diff)
downloadChibiOS-a1457442696ab3f735cd4385d574893e0e97d6d5.tar.gz
ChibiOS-a1457442696ab3f735cd4385d574893e0e97d6d5.tar.bz2
ChibiOS-a1457442696ab3f735cd4385d574893e0e97d6d5.zip
Updated CMSIS to 5.3.0.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12145 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h')
-rw-r--r--os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h b/os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h
deleted file mode 100644
index 7d48ceb91..000000000
--- a/os/common/ext/ARM/CMSIS/Core_A/Include/system_ARMCA5.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/******************************************************************************
- * @file system_ARMCA5.h
- * @brief CMSIS Device System Header File for ARM Cortex-A Device Series
- * @version V1.00
- * @date 16 Mar 2017
- *
- * @note
- *
- ******************************************************************************/
-/*
- * Copyright (c) 2009-2017 ARM Limited. All rights reserved.
- *
- * 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.
- */
-
-#ifndef __SYSTEM_ARMCA5_H
-#define __SYSTEM_ARMCA5_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <stdint.h>
-
-extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
-
-/**
- \brief Setup the microcontroller system.
-
- Initialize the System and update the SystemCoreClock variable.
- */
-extern void SystemInit (void);
-
-
-/**
- \brief Update SystemCoreClock variable.
-
- Updates the SystemCoreClock with current core Clock retrieved from cpu registers.
- */
-extern void SystemCoreClockUpdate (void);
-
-/**
- \brief Create Translation Table.
-
- Creates Memory Management Unit Translation Table.
- */
-extern void MMU_CreateTranslationTable(void);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __SYSTEM_ARMCA5_H */