diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-27 07:51:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-27 07:51:04 +0000 |
commit | f8f56be6c5871fa179ec84b9f0da8f0dd88e365c (patch) | |
tree | 6456787172722b16c4ad3f46389698ae8efd462a /os/hal/platforms/STM32 | |
parent | 9c56bcc138b4646e0e6777a3b53afe8e40c9823b (diff) | |
download | ChibiOS-f8f56be6c5871fa179ec84b9f0da8f0dd88e365c.tar.gz ChibiOS-f8f56be6c5871fa179ec84b9f0da8f0dd88e365c.tar.bz2 ChibiOS-f8f56be6c5871fa179ec84b9f0da8f0dd88e365c.zip |
Fixed bug 3605832.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5335 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32')
-rw-r--r-- | os/hal/platforms/STM32/icu_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/icu_lld.c b/os/hal/platforms/STM32/icu_lld.c index 736321368..db2c92264 100644 --- a/os/hal/platforms/STM32/icu_lld.c +++ b/os/hal/platforms/STM32/icu_lld.c @@ -538,7 +538,6 @@ void icu_lld_stop(ICUDriver *icup) { rccDisableTIM5(FALSE);
}
#endif
- }
#if STM32_ICU_USE_TIM8
if (&ICUD8 == icup) {
nvicDisableVector(STM32_TIM8_UP_NUMBER);
@@ -546,6 +545,7 @@ void icu_lld_stop(ICUDriver *icup) { rccDisableTIM8(FALSE);
}
#endif
+ }
}
/**
|