From 77949c0cbdc8a748cbfce3a225b04244c0c19d5d Mon Sep 17 00:00:00 2001 From: Brendan Fletcher Date: Fri, 20 Oct 2023 02:42:09 -0400 Subject: [PATCH] Fix SPI base clock rate --- core/spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/spi.c b/core/spi.c index 3616bb540..5d7cabb73 100644 --- a/core/spi.c +++ b/core/spi.c @@ -266,7 +266,7 @@ void spi_reset(void) { spi_set_device_funcs(); sched.items[SCHED_SPI].callback.event = spi_event; - sched.items[SCHED_SPI].clock = CLOCK_12M; + sched.items[SCHED_SPI].clock = CLOCK_24M; sched_clear(SCHED_SPI); }