From 1bc8b4e719c87647bdd23da331d5c4a7c0fd9858 Mon Sep 17 00:00:00 2001 From: Florian Larysch Date: Sat, 4 Mar 2017 22:17:33 +0100 Subject: [PATCH] stm32f3/rcc: add HRTIM RCC bits --- include/libopencm3/stm32/f3/rcc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/libopencm3/stm32/f3/rcc.h b/include/libopencm3/stm32/f3/rcc.h index 9b5f5c1b..c813fea1 100644 --- a/include/libopencm3/stm32/f3/rcc.h +++ b/include/libopencm3/stm32/f3/rcc.h @@ -482,6 +482,7 @@ enum rcc_periph_clken { RCC_SDADC1 = _REG_BIT(0x18, 24),/*--78*/ RCC_SDADC2 = _REG_BIT(0x18, 25),/*--78*/ RCC_SDADC3 = _REG_BIT(0x18, 26),/*--78*/ + RCC_HRTIM = _REG_BIT(0x18, 29), /* APB1 peripherals */ RCC_TIM2 = _REG_BIT(0x1C, 0),/*0178*/ @@ -530,6 +531,7 @@ enum rcc_periph_rst { RST_SDADC1 = _REG_BIT(0x0C, 24),/*--78*/ RST_SDADC2 = _REG_BIT(0x0C, 25),/*--78*/ RST_SDADC3 = _REG_BIT(0x0C, 26),/*--78*/ + RST_HRTIM = _REG_BIT(0x0C, 29), /* APB1 peripherals */ RST_TIM2 = _REG_BIT(0x10, 0),/*0178*/