diff options
author | deadprogram <[email protected]> | 2024-12-18 11:21:51 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-12-19 08:01:36 +0100 |
commit | f64e70e6590ffbe281ca096ee61212d6b586e986 (patch) | |
tree | 70644dd1fcdbac56c5f67eca4a8bb67a871a6cb5 /src/machine/spi.go | |
parent | 64fa7853a705c3a1df305a8791a09a8d12b524bc (diff) | |
download | tinygo-f64e70e6590ffbe281ca096ee61212d6b586e986.tar.gz tinygo-f64e70e6590ffbe281ca096ee61212d6b586e986.zip |
feature: make SPI implementation shared for rp2040/rp2350
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'src/machine/spi.go')
-rw-r--r-- | src/machine/spi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/spi.go b/src/machine/spi.go index a6fd866d1..9a1033ca7 100644 --- a/src/machine/spi.go +++ b/src/machine/spi.go @@ -1,4 +1,4 @@ -//go:build !baremetal || atmega || esp32 || fe310 || k210 || nrf || (nxp && !mk66f18) || rp2040 || sam || (stm32 && !stm32f7x2 && !stm32l5x2) +//go:build !baremetal || atmega || esp32 || fe310 || k210 || nrf || (nxp && !mk66f18) || rp2040 || rp2350 || sam || (stm32 && !stm32f7x2 && !stm32l5x2) package machine |