all: use build directives for both Go1.17 and earlier versions

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2021-09-16 17:59:59 +02:00
committed by Ayke
parent b35496dd1b
commit 3b16972ed8
48 changed files with 51 additions and 3 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
// +build mimxrt1062 stm32f405 atsamd51 stm32f103xx k210 stm32f407
//go:build mimxrt1062 || stm32f405 || atsamd51 || stm32f103xx || k210 || stm32f407
// +build mimxrt1062 stm32f405 atsamd51 stm32f103xx k210 stm32f407
package dht // import "tinygo.org/x/drivers/dht"
+1
View File
@@ -1,3 +1,4 @@
//go:build !mimxrt1062 && !stm32f405 && !atsamd51 && !stm32f103xx && !k210 && !stm32f407
// +build !mimxrt1062,!stm32f405,!atsamd51,!stm32f103xx,!k210,!stm32f407
package dht // import "tinygo.org/x/drivers/dht"