aboutsummaryrefslogtreecommitdiff
path: root/03-refactor/include/clock.h
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2018-01-24 00:12:03 -0700
committerJosh Rahm <joshuarahm@gmail.com>2018-01-24 00:12:03 -0700
commit80360c4b8361320b726897c86ee13f9b4caf004a (patch)
tree9a590055e440025d7d36701a540d9e7e39c082d4 /03-refactor/include/clock.h
parent2545ae2d57e5b70975e3fd3b3e570da13dbf62f0 (diff)
downloadstm32l4-80360c4b8361320b726897c86ee13f9b4caf004a.tar.gz
stm32l4-80360c4b8361320b726897c86ee13f9b4caf004a.tar.bz2
stm32l4-80360c4b8361320b726897c86ee13f9b4caf004a.zip
More fields in USART and RCC set to use bitfields.
Diffstat (limited to '03-refactor/include/clock.h')
-rw-r--r--03-refactor/include/clock.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/03-refactor/include/clock.h b/03-refactor/include/clock.h
index 1191f73..30c1302 100644
--- a/03-refactor/include/clock.h
+++ b/03-refactor/include/clock.h
@@ -62,14 +62,6 @@ typedef enum {
PLLM_DIVISOR_8 = 7,
} pllm_divisor_t;
-/* Possible sources for the input clock. */
-typedef enum {
- PLL_SRC_NONE = 0,
- PLL_SRC_MSI = 1,
- PLL_SRC_HSI = 2,
- PLL_SRC_HSE = 3,
-} pll_src_t;
-
/* Valid sources for the system clock. */
typedef enum {
SYSTEM_CLOCK_SRC_MSI = 0,