diff --git a/include/libopencm3/stm32/f3/rcc.h b/include/libopencm3/stm32/f3/rcc.h index 83b4e8c8..e8627e98 100644 --- a/include/libopencm3/stm32/f3/rcc.h +++ b/include/libopencm3/stm32/f3/rcc.h @@ -414,7 +414,6 @@ extern uint32_t rcc_apb2_frequency; /* --- Function prototypes ------------------------------------------------- */ enum rcc_clock { - RCC_CLOCK_44MHZ, RCC_CLOCK_48MHZ, RCC_CLOCK_64MHZ, RCC_CLOCK_END diff --git a/lib/stm32/f3/rcc.c b/lib/stm32/f3/rcc.c index 88a094f5..8cd5cbf5 100644 --- a/lib/stm32/f3/rcc.c +++ b/lib/stm32/f3/rcc.c @@ -45,17 +45,6 @@ uint32_t rcc_apb1_frequency = 8000000; uint32_t rcc_apb2_frequency = 8000000; const struct rcc_clock_scale rcc_hsi_8mhz[RCC_CLOCK_END] = { - { /* 44MHz */ - .pllmul = RCC_CFGR_PLLMUL_MUL11, - .pllsrc = RCC_CFGR_PLLSRC_HSI_DIV2, - .hpre = RCC_CFGR_HPRE_DIV_NONE, - .ppre1 = RCC_CFGR_PPRE1_DIV_2, - .ppre2 = RCC_CFGR_PPRE2_DIV_NONE, - .flash_waitstates = 1, - .ahb_frequency = 44000000, - .apb1_frequency = 22000000, - .apb2_frequency = 44000000, - }, { /* 48MHz */ .pllmul = RCC_CFGR_PLLMUL_MUL12, .pllsrc = RCC_CFGR_PLLSRC_HSI_DIV2,