system_stm32f10x.h头文件
时间: 2023-11-28 21:04:33 浏览: 298
`system_stm32f10x.h` 是 STMicroelectronics 公司提供的针对 STM32F10x 系列微控制器的系统头文件,其中包含了一些与系统时钟、中断、NVIC、Flash等相关的宏定义和函数声明,用于方便用户进行系统配置和编程。这个头文件一般会被其他的驱动库头文件包含进来,例如 `stm32f10x_gpio.h`、`stm32f10x_tim.h`、`stm32f10x_usart.h`等。在使用这些库之前,需要先包含 `system_stm32f10x.h` 头文件。
相关问题
system_stm32f10x.h头文件的代码
以下是 `system_stm32f10x.h` 头文件的代码:
```c
/**
******************************************************************************
* @file system_stm32f10x.h
* @author MCD Application Team
* @version V3.6.1
* @date 22-April-2016
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
* This file contains the system clock configuration for STM32F10x devices,
* and is customized for use with STM32F103 devices.
******************************************************************************
* @copyright (c) 2016 STMicroelectronics
* @author MCD
* @brief Header for system_stm32f10x.c module
******************************************************************************
*/
#ifndef __SYSTEM_STM32F10X_H
#define __SYSTEM_STM32F10X_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
extern uint32_t SystemCoreClock;
/**
* @brief Setup the microcontroller system
* Initialize the Embedded Flash Interface, the PLL and update the
* SystemCoreClock variable.
* @note This function should be used only after reset.
* @param None
* @retval None
*/
void SystemInit(void);
/**
* @brief Update SystemCoreClock variable according to Clock Register Values.
* The SystemCoreClock variable contains the core clock (HCLK), it can
* be used by the user application to setup the SysTick timer or configure
* other parameters.
* @note None
* @param None
* @retval None
*/
void SystemCoreClockUpdate(void);
#ifdef __cplusplus
}
#endif
#endif /* __SYSTEM_STM32F10X_H */
```
该文件定义了 `SystemInit()` 和 `SystemCoreClockUpdate()` 函数,并声明了一个名为 `SystemCoreClock` 的全局变量。这些函数和变量用于设置和更新系统时钟。
STM32F10x.h头文件代码
由于STM32F10x.h头文件比较大,这里只展示其中部分主要内容的代码。完整的STM32F10x.h头文件可以在STMicroelectronics官网上下载。
```c
#ifndef __STM32F10x_H
#define __STM32F10x_H
#include "core_cm3.h" // CMSIS头文件,包含Cortex-M3内核相关的宏和函数
// 定义STM32F10x系列微控制器的型号,例如STM32F103xB
#if !defined (STM32F10X_LD) && !defined (STM32F10X_LD_VL) && !defined (STM32F10X_MD) && !defined (STM32F10X_MD_VL) && \
!defined (STM32F10X_HD) && !defined (STM32F10X_HD_VL) && !defined (STM32F10X_XL) && !defined (STM32F10X_CL)
#define STM32F10X_LD
#endif
// 定义STM32F10x系列微控制器的系统时钟频率
#if !defined HSI_VALUE
#define HSI_VALUE ((uint32_t)8000000) /*!< Value of the Internal oscillator in Hz*/
#endif /* HSI_VALUE */
#if !defined HSE_VALUE
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */
#define SYSCLK_FREQ_HSI HSI_VALUE /*!< System clock frequency with HSI as reference clock */
#define SYSCLK_FREQ_72MHz 72000000UL /*!< System clock frequency with PLL enabled and HSE as reference clock */
// 定义一些常用的类型和宏
typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus, BitStatus;
typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
#define IS_FLAG_STATUS(STATUS) (((STATUS) == RESET) || ((STATUS) == SET))
#define IS_IT_STATUS(STATUS) (((STATUS) == RESET) || ((STATUS) == SET))
#define IS_BIT_STATUS(STATUS) (((STATUS) == RESET) || ((STATUS) == SET))
#define IS_ERROR_STATUS(STATUS) (((STATUS) == ERROR) || ((STATUS) == SUCCESS))
// 定义IO口类型
typedef struct
{
__IO uint32_t CRL;
__IO uint32_t CRH;
__IO uint32_t IDR;
__IO uint32_t ODR;
__IO uint32_t BSRR;
__IO uint32_t BRR;
__IO uint32_t LCKR;
} GPIO_TypeDef;
// 定义外设寄存器类型
typedef struct
{
__IO uint32_t CR1;
__IO uint32_t CR2;
__IO uint32_t SR;
__IO uint32_t DR;
__IO uint32_t CRCPR;
__IO uint32_t RXCRCR;
__IO uint32_t TXCRCR;
__IO uint32_t I2SCFGR;
} SPI_TypeDef;
// 定义一些常用的函数
void NVIC_EnableIRQ(IRQn_Type IRQn);
void GPIO_Init(GPIO_TypeDef* GPIOx, uint32_t GPIO_Pin, uint32_t GPIO_Mode);
#endif /* __STM32F10x_H */
```
阅读全文