aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Palsson2012-11-10 20:50:25 +0000
committerKarl Palsson2012-11-14 00:16:52 +0000
commit259d4e5171e2fd9b612809f752f28b071526ca19 (patch)
tree025cf8e69f66592db4ae543dc628fc2f3e313d96
parent72666a5b936368275423f0735af7939473616d68 (diff)
[l1] Add missing TIM5 bit from newer ref manual
-rw-r--r--include/libopencm3/stm32/l1/rcc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libopencm3/stm32/l1/rcc.h b/include/libopencm3/stm32/l1/rcc.h
index d888d7c..6c7dc95 100644
--- a/include/libopencm3/stm32/l1/rcc.h
+++ b/include/libopencm3/stm32/l1/rcc.h
@@ -231,6 +231,7 @@ LGPL License Terms @ref lgpl_license
#define RCC_APB1RSTR_LCDRST (1 << 9)
#define RCC_APB1RSTR_TIM7RST (1 << 5)
#define RCC_APB1RSTR_TIM6RST (1 << 4)
+#define RCC_APB1RSTR_TIM5RST (1 << 3)
#define RCC_APB1RSTR_TIM4RST (1 << 2)
#define RCC_APB1RSTR_TIM3RST (1 << 1)
#define RCC_APB1RSTR_TIM2RST (1 << 0)