Browse Source

[bug] fix tim bug

liYony 2 years ago
parent
commit
190eda6ab0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bsp/stm32/libraries/HAL_Drivers/drv_tim.c

+ 1 - 1
bsp/stm32/libraries/HAL_Drivers/drv_tim.c

@@ -212,7 +212,7 @@ static void timer_init(struct rt_hwtimer_device *timer, rt_uint32_t state)
 #if defined(APBPERIPH_BASE)
         prescaler_value = (uint32_t)(HAL_RCC_GetPCLK1Freq() * pclk1_doubler / 10000) - 1;
 #elif defined(APB1PERIPH_BASE) || defined(APB2PERIPH_BASE)
-        if ((rt_uint32_t)htim->Instance >= APB2PERIPH_BASE)
+        if ((rt_uint32_t)tim->Instance >= APB2PERIPH_BASE)
         {
             prescaler_value = (uint32_t)(HAL_RCC_GetPCLK2Freq() * pclk2_doubler / 10000) - 1;
         }