diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/platforms/STM32/pwm_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/pwm_lld.c b/os/hal/platforms/STM32/pwm_lld.c index c7b39b544..11b5faade 100644 --- a/os/hal/platforms/STM32/pwm_lld.c +++ b/os/hal/platforms/STM32/pwm_lld.c @@ -251,7 +251,7 @@ CH_IRQ_HANDLER(TIM8_UP_IRQHandler) { CH_IRQ_PROLOGUE();
STM32_TIM8->SR = ~TIM_SR_UIF;
- PWMD1.config->callback(&PWMD8);
+ PWMD8.config->callback(&PWMD8);
CH_IRQ_EPILOGUE();
}
|