diff options
author | deadprogram <[email protected]> | 2024-12-18 11:21:51 +0100 |
---|---|---|
committer | deadprogram <[email protected]> | 2024-12-18 19:41:31 +0100 |
commit | 443aaa7991a611946e91c601598971158f070f12 (patch) | |
tree | bdf98319874fa965ba286e53da26ad7926180075 /src/machine/spi.go | |
parent | 37f35f8c910b05e2040433448546f41b34535b32 (diff) | |
download | tinygo-443aaa7991a611946e91c601598971158f070f12.tar.gz tinygo-443aaa7991a611946e91c601598971158f070f12.zip |
feature: make SPI implementation shared for rp2040/rp2350rp2350-spi
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 |