aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/spi.go
diff options
context:
space:
mode:
authorKenneth Bell <[email protected]>2021-11-11 10:56:05 +0000
committerRon Evans <[email protected]>2021-11-20 12:07:11 +0100
commit62d4a6a77f6e7a35346277166a1ace143ab33ad0 (patch)
tree757f4771abcfeacf71b37a1fd200a6ca86891a45 /src/machine/spi.go
parent339301b709dcb83747bfb1ebe56c8d6171e85b15 (diff)
downloadtinygo-62d4a6a77f6e7a35346277166a1ace143ab33ad0.tar.gz
tinygo-62d4a6a77f6e7a35346277166a1ace143ab33ad0.zip
stm32: add minimal stm32wlex5 / lorae5 target
credit to ofauchon
Diffstat (limited to 'src/machine/spi.go')
-rw-r--r--src/machine/spi.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/machine/spi.go b/src/machine/spi.go
index 80f7c133d..398c5c165 100644
--- a/src/machine/spi.go
+++ b/src/machine/spi.go
@@ -1,4 +1,5 @@
-// +build !baremetal stm32,!stm32f7x2,!stm32l5x2 fe310 k210 atmega
+//go:build !baremetal || (stm32 && !stm32f7x2 && !stm32l5x2 && !stm32wle5) || fe310 || k210 || atmega
+// +build !baremetal stm32,!stm32f7x2,!stm32l5x2,!stm32wle5 fe310 k210 atmega
package machine