diff options
-rw-r--r-- | os/hal/ports/STM32/LLD/TIMv1/eicu_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/TIMv1/eicu_lld.c b/os/hal/ports/STM32/LLD/TIMv1/eicu_lld.c index ce654c4..a3e6cbd 100644 --- a/os/hal/ports/STM32/LLD/TIMv1/eicu_lld.c +++ b/os/hal/ports/STM32/LLD/TIMv1/eicu_lld.c @@ -949,7 +949,7 @@ void eicu_lld_start(EICUDriver *eicup) { rccResetTIM10(); nvicEnableVector(STM32_TIM10_NUMBER, STM32_EICU_TIM10_IRQ_PRIORITY); eicup->channels = 1; - eicup->clock = STM32_TIMCLK1; + eicup->clock = STM32_TIMCLK2; } #endif #if STM32_EICU_USE_TIM11 @@ -958,7 +958,7 @@ void eicu_lld_start(EICUDriver *eicup) { rccResetTIM11(); nvicEnableVector(STM32_TIM11_NUMBER, STM32_EICU_TIM11_IRQ_PRIORITY); eicup->channels = 1; - eicup->clock = STM32_TIMCLK1; + eicup->clock = STM32_TIMCLK2; } #endif #if STM32_EICU_USE_TIM13 |