Browse Source

stm32l4: rcc: missing pllp definitions

These are important for implementing the PLL helper functions.
pull/555/merge
Karl Palsson 9 years ago
parent
commit
b69916837e
  1. 2
      include/libopencm3/stm32/l4/rcc.h

2
include/libopencm3/stm32/l4/rcc.h

@ -228,6 +228,8 @@ Twelve frequency ranges are available: 100 kHz, 200 kHz, 400 kHz, 800 kHz,
/* Division for PLLSAI3CLK, 0 == 7, 1 == 17 */
#define RCC_PLLCFGR_PLLP (1 << 17)
#define RCC_PLLCFGR_PLLP_DIV7 0
#define RCC_PLLCFGR_PLLP_DIV17 RCC_PLLCFGR_PLLP
#define RCC_PLLPEN (1 << 16)
/** @defgroup rcc_pllcfgr_plln RCC_PLLCFGR PLLN values

Loading…
Cancel
Save