From 80360c4b8361320b726897c86ee13f9b4caf004a Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 24 Jan 2018 00:12:03 -0700 Subject: More fields in USART and RCC set to use bitfields. --- 03-refactor/include/clock.h | 8 -------- 1 file changed, 8 deletions(-) (limited to '03-refactor/include/clock.h') 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, -- cgit