stm32f4定时器灯亮2s
时间: 2024-01-05 16:19:10 浏览: 71
以下是使用stm32f4定时器控制灯亮2s的代码:
```c
#include "stm32f4xx.h"
void delay_ms(uint32_t ms)
{
for (uint32_t i = 0; i < ms; i++)
{
for (volatile uint32_t j = 0; j < 2000; j++);
}
}
int main(void)
{
RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM5, ENABLE); // 使能TIM5时钟
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE); // 使能GPIOA时钟
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA, &GPIO_InitStructure); // 初始化GPIOA.5
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
TIM_TimeBaseStructure.TIM_Period = 42000 - 1; // 自动重装载值
TIM_TimeBaseStructure.TIM_Prescaler = 83; // 定时器分频
TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1; // 时钟分割
TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; // 向上计数模式
TIM_TimeBaseInit(TIM5, &TIM_TimeBaseStructure); // 初始化TIM5
TIM_Cmd(TIM5, ENABLE); // 使能TIM5
while (1)
{
if (TIM_GetFlagStatus(TIM5, TIM_FLAG_Update) == SET) // 判断TIM5更新中断是否发生
{
TIM_ClearFlag(TIM5, TIM_FLAG_Update); // 清除TIM5更新中断标志位
GPIO_ToggleBits(GPIOA, GPIO_Pin_5); // 翻转GPIOA.5的电平
}
delay_ms(100); // 延时100ms
}
}
```
阅读全文