summaryrefslogtreecommitdiff
path: root/stmhal/stm32f4xx_hal_msp.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-22 23:57:03 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-22 23:57:03 +0000
commit5e756c9860c39bb3555427f95888f7209eb3f1ec (patch)
treeadac6d18dd879c980f68cc5046e3c7a18effd6a7 /stmhal/stm32f4xx_hal_msp.c
parente254809505517db9c4dbd2cb3bcbbdf6433c1ea0 (diff)
stmhal: Rename servo_TIM2_Handle -> TIM2_Handle.
Diffstat (limited to 'stmhal/stm32f4xx_hal_msp.c')
-rw-r--r--stmhal/stm32f4xx_hal_msp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/stm32f4xx_hal_msp.c b/stmhal/stm32f4xx_hal_msp.c
index a8587c384..15dca5651 100644
--- a/stmhal/stm32f4xx_hal_msp.c
+++ b/stmhal/stm32f4xx_hal_msp.c
@@ -149,7 +149,7 @@ void HAL_RTC_MspDeInit(RTC_HandleTypeDef *hrtc)
void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) {
if (htim == &TIM3_Handle) {
USBD_CDC_HAL_TIM_PeriodElapsedCallback();
- } else if (htim == &servo_TIM2_Handle) {
+ } else if (htim == &TIM2_Handle) {
servo_timer_irq_callback();
}
}