STM32 之 LED
(3)includes.h
C语言:Codee#14362
#ifndef INCLUDES
#define INCLUDES 1
//==============================================================================
// ★★☆☆★★ 包含文件 ★★☆☆★★
//==============================================================================
#include "stm32f10x_lib.h"
#include "stm32f10x_type.h"
#include "stm32f10x_it.h"
//==============================================================================
// ★★☆☆★★ 全局变量 ★★☆☆★★
//==============================================================================
//==============================================================================
// ★★☆☆★★ 调用函数 ★★☆☆★★
//==============================================================================
//##### 时钟部分 #############################################################
voidRCC_Configuration(void);//配置系统时钟
voidNVIC_Configuration(void);//配置 NVIC 和 Vector Table
//##### I/O部分 ##############################################################
voidGPIO_Configuration(void);//配置使用的GPIO口
//##### 其他常用函数 #########################################################
voiddelay(void);
#endif
STM32LE 相关文章:
- 基于STM32的LED和KEY(12-01)
- STM32 初学 led 不用库 详细分析(11-24)
- STM32学习 LED跑马灯实验(11-23)
- stm32快速学习7——LED闪烁(TIM2查询)(11-17)
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)