summaryrefslogtreecommitdiff
path: root/cmd/sbc_harness/main.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-17 21:52:23 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-19 22:05:53 -0700
commit1cc68fb6f72ada5446a9914cc3bf97db9259a880 (patch)
tree7bd153465dcf84b674b71a41e260961eb113e3f0 /cmd/sbc_harness/main.c
parentac008eb74171080114d1c41a233da5262937e604 (diff)
libhw: w5500: Fix
Diffstat (limited to 'cmd/sbc_harness/main.c')
-rw-r--r--cmd/sbc_harness/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c
index bdd23a7..17d32cf 100644
--- a/cmd/sbc_harness/main.c
+++ b/cmd/sbc_harness/main.c
@@ -69,7 +69,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 */
- 80*1000*1000, /* run at the W5500's max rate of 80MHz */
+ 5*1000*1000, /* run at the W5500's max rate of 80MHz */
16, /* PIN_MISO */
19, /* PIN_MOSI */
18, /* PIN_CLK */