aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/pwm_lld.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-10-04 20:01:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-10-04 20:01:46 +0000
commit9422ad779cb626290d92db6144bce33eaa5758f1 (patch)
tree9301c526b605b64638716d4adbab9f926eca5cb1 /os/hal/platforms/STM32/pwm_lld.c
parent0138ec13a29d7688ba454ed2e19f88d1114bfa89 (diff)
downloadChibiOS-9422ad779cb626290d92db6144bce33eaa5758f1.tar.gz
ChibiOS-9422ad779cb626290d92db6144bce33eaa5758f1.tar.bz2
ChibiOS-9422ad779cb626290d92db6144bce33eaa5758f1.zip
Fixed bug 3418620.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3424 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/pwm_lld.c')
-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 d8f98a432..ab3c1c2bb 100644
--- a/os/hal/platforms/STM32/pwm_lld.c
+++ b/os/hal/platforms/STM32/pwm_lld.c
@@ -327,7 +327,7 @@ void pwm_lld_init(void) {
#if STM32_PWM_USE_TIM8
/* Driver initialization.*/
pwmObjectInit(&PWMD8);
- PWMD5.tim = TIM8;
+ PWMD8.tim = TIM8;
#endif
}