aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/stm32/stm32g0.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/stm32/stm32g0.c b/src/stm32/stm32g0.c
index ee0230f4..d3815328 100644
--- a/src/stm32/stm32g0.c
+++ b/src/stm32/stm32g0.c
@@ -94,11 +94,8 @@ clock_setup(void)
while ((RCC->CFGR & RCC_CFGR_SWS_Msk) != (2 << RCC_CFGR_SWS_Pos))
;
- // Enable USB clock
- if (CONFIG_USBSERIAL) {
- // PLLQCLK
- RCC->CCIPR2 |= RCC_CCIPR2_USBSEL_1;
- }
+ // Use PLLQCLK for USB (setting USBSEL=2 works in practice)
+ RCC->CCIPR2 = RCC_CCIPR2_USBSEL_1;
}