From 49eb414530b0b5bbe07579a9b11e03839787dac0 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 8 Dec 2019 17:57:57 +0100 Subject: [PATCH] machine: add Tx method to simulated SPI bus This allows display drivers like st7789 to be used on the TinyGo Playground. --- src/machine/spi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/spi.go b/src/machine/spi.go index 5b794460..1fe8435f 100644 --- a/src/machine/spi.go +++ b/src/machine/spi.go @@ -1,4 +1,4 @@ -// +build sam stm32,!stm32f407 fe310 +// +build !baremetal sam stm32,!stm32f407 fe310 package machine