From 22c5b3e1dc4e3cf7de3f73ebbf5b59542f207f4b Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Sun, 17 Nov 2024 23:04:11 -0700 Subject: System clock is sort of working. It appears the frequency divider does not work. I've followed the data sheet, but no matter what I set the frequency divider to it appears to not work. It's possible maybe the GPIO is using an un-divided clock, but I'm not sure. Also the 32khz clock does not work I think. It might be an issue with the board. The waveform is jagged and looks awful. But I can switch from the HSE to the PLL. --- src/init.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/init.c') diff --git a/src/init.c b/src/init.c index c402f17..5a0a7c3 100644 --- a/src/init.c +++ b/src/init.c @@ -1,6 +1,7 @@ #include #include +#include "clock.h" #include "io.h" #include "isr_vector.h" -- cgit