用到两个定时器TIM3和TIM4,如何判断是哪个定时器产生的作用

发布网友 发布时间:2022-04-23 08:49

我来回答

1个回答

热心网友 时间:2022-06-18 14:31

void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
{
/* NOTE : This function Should not be modified, when the callback is needed,
the __HAL_TIM_PeriodElapsedCallback could be implemented in the user file
*/
uint16_t i;
switch ((uint32_t)(htim->Instance))
{
case (uint32_t)TIM2:
HAL_GPIO_TogglePin (GPIOF,GPIO_PIN_7);
break;
case (uint32_t)TIM4:
HAL_GPIO_TogglePin (GPIOF,GPIO_PIN_8);
break;
}
}
这样去处理。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com