system_apm32f10x.h 1.4 KB
Newer Older
A
abbcc 已提交
1 2 3 4 5
/*!
 * @file        system_apm32f10x.h
 *
 * @brief       CMSIS Cortex-M3 Device Peripheral Access Layer System Source File
 *
6
 * @version     V1.0.4
A
abbcc 已提交
7
 *
8
 * @date        2022-12-01
A
abbcc 已提交
9
 *
10 11 12 13 14 15 16 17
 * @attention
 *
 *  Copyright (C) 2020-2022 Geehy Semiconductor
 *
 *  You may not use this file except in compliance with the
 *  GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE).
 *
 *  The program is only for reference, which is distributed in the hope
18
 *  that it will be useful and instructional for customers to develop
19 20 21 22 23
 *  their software. Unless required by applicable law or agreed to in
 *  writing, the program is distributed on an "AS IS" BASIS, WITHOUT
 *  ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions
 *  and limitations under the License.
A
abbcc 已提交
24 25
 */

26
/* Define to prevent recursive inclusion */
A
abbcc 已提交
27 28 29
#ifndef __SYSTEM_APM32F10X_H
#define __SYSTEM_APM32F10X_H

30 31 32
/* Includes */
#include "apm32f10x.h"

A
abbcc 已提交
33
#ifdef __cplusplus
34
extern "C" {
A
abbcc 已提交
35 36
#endif

37 38 39 40 41 42 43 44 45 46 47 48
/** @addtogroup CMSIS
  @{
*/

/** @addtogroup APM32F10x_System
  @{
*/

/** @defgroup System_Variables
  @{
*/

A
abbcc 已提交
49 50 51 52 53
extern uint32_t SystemCoreClock;

extern void SystemInit(void);
extern void SystemCoreClockUpdate(void);

54 55 56 57
/**@} end of group System_Functions */
/**@} end of group APM32F10x_System */
/**@} end of group CMSIS */

A
abbcc 已提交
58 59 60 61 62
#ifdef __cplusplus
}
#endif

#endif /*__SYSTEM_APM32F10X_H */