From 910c85365ff3d7b2601132fd53542b6e594fa855 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 19 Nov 2024 21:57:17 -0700 Subject: Speed SPI back up --- cmd/sbc_harness/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/sbc_harness') diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c index 23195b3..4683c72 100644 --- a/cmd/sbc_harness/main.c +++ b/cmd/sbc_harness/main.c @@ -71,7 +71,7 @@ COROUTINE init_cr(void *) { rp2040_hwspi_init(&globals.dev_spi, "W5500", RP2040_HWSPI_0, SPI_MODE_0, /* the W5500 supports mode 0 or mode 3 */ - 5*1000*1000, /* run at the W5500's max rate of 80MHz */ + 60*1000*1000, /* as close to the W5500's max rate of 80MHz as we can without hwspi borking */ 16, /* PIN_MISO */ 19, /* PIN_MOSI */ 18, /* PIN_CLK */ -- cgit v1.2.3-2-g168b