stm32f103双灯闪烁
时间: 2023-12-21 14:05:02 浏览: 95
以下是使用STM32F103实现双灯闪烁的步骤:
1. 配置文件:
在STM32F10x_StdPeriph_Lib_V3.5.0\Project\STM32F10x_StdPeriph_Template目录下,找到stm32f10x_conf.h文件,打开并进行以下配置:
```c
// 定义使用的引脚
#define LED1_PIN GPIO_Pin_8
#define LED2_PIN GPIO_Pin_9
// 定义使用的引脚所在的GPIO端口
#define LED1_GPIO_PORT GPIOA
#define LED2_GPIO_PORT GPIOA
// 定义使用的引脚所在的GPIO时钟
#define LED1_GPIO_CLK RCC_APB2Periph_GPIOA
#define LED2_GPIO_CLK RCC_APB2Periph_GPIOA
```
2. 烧写程序:
在STM32F10x_StdPeriph_Lib_V3.5.0\Project\STM32F10x_StdPeriph_Template目录下,找到main.c文件,打开并进行以下修改:
```c
#include "stm32f10x.h"
#include "stm32f10x_gpio.h"
#include "stm32f10x_rcc.h"
int main(void)
{
// 初始化LED引脚所在的GPIO端口
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(LED1_GPIO_CLK | LED2_GPIO_CLK, ENABLE);
GPIO_InitStructure.GPIO_Pin = LED1_PIN | LED2_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(LED1_GPIO_PORT, &GPIO_InitStructure);
while (1)
{
// 点亮LED1
GPIO_SetBits(LED1_GPIO_PORT, LED1_PIN);
// 延时一段时间
for (int i = 0; i < 1000000; i++);
// 熄灭LED1
GPIO_ResetBits(LED1_GPIO_PORT, LED1_PIN);
// 延时一段时间
for (int i = 0; i < 1000000; i++);
// 点亮LED2
GPIO_SetBits(LED2_GPIO_PORT, LED2_PIN);
// 延时一段时间
for (int i = 0; i < 1000000; i++);
// 熄灭LED2
GPIO_ResetBits(LED2_GPIO_PORT, LED2_PIN);
// 延时一段时间
for (int i = 0; i < 1000000; i++);
}
}
```
请注意,以上代码仅为示例,具体的引脚和时钟配置可能需要根据实际情况进行修改。
阅读全文