aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-04-02 08:59:10 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-04-02 08:59:10 +0000
commit876463f7215f0166ef9b7cafca77c7dca966d632 (patch)
treebb486f6db2520670b2c6bb512a18d606418105e4 /os/hal/platforms
parentee8e0c61f9fd4e8c496b13ac47179c9621206db6 (diff)
downloadChibiOS-876463f7215f0166ef9b7cafca77c7dca966d632.tar.gz
ChibiOS-876463f7215f0166ef9b7cafca77c7dca966d632.tar.bz2
ChibiOS-876463f7215f0166ef9b7cafca77c7dca966d632.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1827 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 ab0649b70..f5fb93c8f 100644
--- a/os/hal/platforms/STM32/pwm_lld.c
+++ b/os/hal/platforms/STM32/pwm_lld.c
@@ -274,7 +274,7 @@ void pwm_lld_start(PWMDriver *pwmp) {
NVICEnableVector(TIM1_UP_IRQn,
CORTEX_PRIORITY_MASK(STM32_PWM1_IRQ_PRIORITY));
NVICEnableVector(TIM1_CC_IRQn,
- CORTEX_PRIORITY_MASK(STM32_PWM1_IRQ_PRIORITY);
+ CORTEX_PRIORITY_MASK(STM32_PWM1_IRQ_PRIORITY));
RCC->APB2ENR |= RCC_APB2ENR_TIM1EN;
}
#endif