aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-22 11:33:58 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-22 11:33:58 +0000
commit21148a2f7f7a08a36b7e7a03365e8eabbd93960a (patch)
treec4d16bdea465c86b2a9b087f1194a4bb533e4323 /os/hal/platforms
parent18a0ce73d9310d68ff8c02faffa255a3aadd3ab0 (diff)
downloadChibiOS-21148a2f7f7a08a36b7e7a03365e8eabbd93960a.tar.gz
ChibiOS-21148a2f7f7a08a36b7e7a03365e8eabbd93960a.tar.bz2
ChibiOS-21148a2f7f7a08a36b7e7a03365e8eabbd93960a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3850 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms')
-rw-r--r--os/hal/platforms/STM32/pwm_lld.c2
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();
}