aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-04 16:21:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-04 16:21:09 +0000
commit636f21faadbef4f9b43e08c18fb1d3f5c4c9d9f9 (patch)
treea880cf2066cb6f18dc342fd7af15b040e4c7dd38 /os/hal/platforms
parent4f6d4bede4410b5fd2c11ffb5a0fa719e4e14ca1 (diff)
downloadChibiOS-636f21faadbef4f9b43e08c18fb1d3f5c4c9d9f9.tar.gz
ChibiOS-636f21faadbef4f9b43e08c18fb1d3f5c4c9d9f9.tar.bz2
ChibiOS-636f21faadbef4f9b43e08c18fb1d3f5c4c9d9f9.zip
Fixed bug bug #424.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6076 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms')
-rw-r--r--os/hal/platforms/STM32/pwm_lld.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/os/hal/platforms/STM32/pwm_lld.c b/os/hal/platforms/STM32/pwm_lld.c
index 1e9e0adfb..eb44d308a 100644
--- a/os/hal/platforms/STM32/pwm_lld.c
+++ b/os/hal/platforms/STM32/pwm_lld.c
@@ -100,10 +100,9 @@ PWMDriver PWMD9;
/*===========================================================================*/
#if STM32_PWM_USE_TIM2 || STM32_PWM_USE_TIM3 || STM32_PWM_USE_TIM4 || \
- STM32_PWM_USE_TIM5 || STM32_PWM_USE_TIM8 || STM32_PWM_USE_TIM9 || \
- defined(__DOXYGEN__)
+ STM32_PWM_USE_TIM5 || STM32_PWM_USE_TIM9 || defined(__DOXYGEN__)
/**
- * @brief Common TIM2...TIM5 IRQ handler.
+ * @brief Common TIM2...TIM5,TIM9 IRQ handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.