aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-04-04 08:01:46 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-04-04 08:01:46 +0000
commitb3c635dc4b9ba6ae0d02d32e4ac5ecacbda73ca2 (patch)
tree2519167ed500e7dc806c8b13b7b6259685811875 /os/hal/ports
parent15d0007e9687428fe314e1369a9bb4eeb427cfcc (diff)
downloadChibiOS-b3c635dc4b9ba6ae0d02d32e4ac5ecacbda73ca2.tar.gz
ChibiOS-b3c635dc4b9ba6ae0d02d32e4ac5ecacbda73ca2.tar.bz2
ChibiOS-b3c635dc4b9ba6ae0d02d32e4ac5ecacbda73ca2.zip
Fixed error in chVTDoResetI()
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7850 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/STM32/LLD/TIMv1/st_lld.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/TIMv1/st_lld.h b/os/hal/ports/STM32/LLD/TIMv1/st_lld.h
index 571396d91..8adba0de3 100644
--- a/os/hal/ports/STM32/LLD/TIMv1/st_lld.h
+++ b/os/hal/ports/STM32/LLD/TIMv1/st_lld.h
@@ -165,7 +165,6 @@ static inline void st_lld_stop_alarm(void) {
static inline void st_lld_set_alarm(systime_t time) {
STM32_ST_TIM->CCR[0] = (uint32_t)time;
- STM32_ST_TIM->SR = 0;
}
/**