资源简介
STM32CUEB关于KEIL5、stm32f103c8t6时钟配置和LED灯闪烁程序 .
代码片段和文件信息
/**
******************************************************************************
* @file stm32f1xx_hal.c
* @author MCD Application Team
* @brief HAL module driver.
* This is the common part of the HAL initialization
*
@verbatim
==============================================================================
##### How to use this driver #####
==============================================================================
[..]
The common HAL driver contains a set of generic and common APIs that can be
used by the PPP peripheral drivers and the user to start using the HAL.
[..]
The HAL contains two APIs‘ categories:
(+) Common HAL APIs
(+) Services HAL APIs
@endverbatim
******************************************************************************
* @attention
*
* © Copyright (c) 2016 STMicroelectronics.
* All rights reserved.
*
* This software component is licensed by ST under BSD 3-Clause license
* the “License“; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include “stm32f1xx_hal.h“
/** @addtogroup STM32F1xx_HAL_Driver
* @{
*/
/** @defgroup HAL HAL
* @brief HAL module driver.
* @{
*/
#ifdef HAL_MODULE_ENABLED
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/** @defgroup HAL_Private_Constants HAL Private Constants
* @{
*/
/**
* @brief STM32F1xx HAL Driver version number V1.1.4
*/
#define __STM32F1xx_HAL_VERSION_MAIN (0x01U) /*!< [31:24] main version */
#define __STM32F1xx_HAL_VERSION_SUB1 (0x01U) /*!< [23:16] sub1 version */
#define __STM32F1xx_HAL_VERSION_SUB2 (0x04U) /*!< [15:8] sub2 version */
#define __STM32F1xx_HAL_VERSION_RC (0x00U) /*!< [7:0] release candidate */
#define __STM32F1xx_HAL_VERSION ((__STM32F1xx_HAL_VERSION_MAIN << 24)\
|(__STM32F1xx_HAL_VERSION_SUB1 << 16)\
|(__STM32F1xx_HAL_VERSION_SUB2 << 8 )\
|(__STM32F1xx_HAL_VERSION_RC))
#define IDCODE_DEVID_MASK 0x00000FFFU
/**
* @}
*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/** @defgroup HAL_Private_Variables HAL Private Variables
* @{
*/
__IO uint32_t uwTick;
uint32_t uwTickPrio = (1UL << __NVIC_PRIO_BITS); /* Invalid PRIO */
HAL_TickFreqTypeDef uwTickFreq = HAL_TI
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5698 2020-03-28 18:34 1_CLOCK_LED\.mxproject
文件 3038 2020-03-28 18:34 1_CLOCK_LED\1_CLOCK_LED.ioc
文件 853289 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h
文件 7481 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h
文件 2029 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h
文件 28208 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_armcc.h
文件 56497 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_armclang.h
文件 9014 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_compiler.h
文件 62344 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_gcc.h
文件 28414 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_iccarm.h
文件 1716 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\cmsis_version.h
文件 97995 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_armv8mbl.h
文件 168914 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_armv8mml.h
文件 42208 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm0.h
文件 50464 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm0plus.h
文件 43456 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm1.h
文件 104628 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm23.h
文件 111854 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm3.h
文件 175600 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm33.h
文件 123607 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm4.h
文件 148588 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_cm7.h
文件 47249 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_sc000.h
文件 110523 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\core_sc300.h
文件 11711 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\mpu_armv7.h
文件 10958 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\mpu_armv8.h
文件 2757 2020-02-29 11:35 1_CLOCK_LED\Drivers\CMSIS\Include\tz_context.h
文件 204810 2020-02-29 11:35 1_CLOCK_LED\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h
文件 11594 2020-02-29 11:35 1_CLOCK_LED\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h
文件 17552 2020-02-29 11:35 1_CLOCK_LED\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h
文件 7177 2020-02-29 11:35 1_CLOCK_LED\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h
............此处省略127个文件信息
- 上一篇:VC_视频捕捉与帧处理
- 下一篇:17天搞定GRE单词电子书
相关资源
- STM32F103C8T6的双路ADC采样
- 基于STM32F103C8T6的迷宫小车
- STM32F103C8T6核心板使用说明,原理图,
- STM32F103C8T6核心板测试代码点灯库函数
- BMP280 硬件SPI驱动程序 STM32F103C8T6
- esp8266和24l01基于stm32f103c8t6单片机做的
- STM8程序,时钟配置,串口,定时器等
- STM32F103C8T6核心板 + ENC28J60
- stm32f103c8t6 驱动ili9341 2.8寸TFT LCD液晶显
- 基于stm32F103c8t6和GPS模块做的小玩意儿
- AD9959 stm32f103c8t6 驱动
- stm32f103c8t6数据手册
- 串口与蓝牙串口stm32f103C8T6通用系列
- 基于STM32F103C8T6超声波测距源码及接线
- STM32F103C8T6按键调整参数断电保护,温
- STM32F103C8T6+FreeRTOS+Keil5 代码亲测完美
- STM32F103C8T6接收福斯i6遥控器信号1286
- STM32F103C8T6最小系统板PCB图AD项目
- MPU6050 DMP+ADXL345+NRF24L01+HAL库+STM32F103C
- stm32f103c8t6单片机 FreeRTOS源码
- STM32F103C8T6(加了蓝牙).zip
- STM32F103C8T6蓝牙点亮LED
- 基于stm32f103c8t6 + 机智云的环境监测
- STM32f103c8t6中文资料带书签
- stm32F103C8T6+LCD1602.rar
- STM32F103C8T6 2.4G nrf24l01无线模块通信代
- 基于STM32F103C8T6的双柄遥控板DMA采样工
- uCOSII移植STM32F103C8T6范例工程
- STM32F103C8T6_FreeRTOS_V10.0_RTC作为FreeRTOS时
- STM32F103C8T6 串行驱动 12864屏幕
评论
共有 条评论