sx126x: update to use new device package location

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2022-02-19 11:45:03 +01:00
parent ee70298bc4
commit 5130e9a120
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -4,11 +4,12 @@ package main
// module will be in RX mode between two transmissions
import (
"device/stm32"
"machine"
"runtime/interrupt"
"time"
"tinygo.org/x/device/stm32"
rfswitch "tinygo.org/x/drivers/examples/sx126x/rfswitch"
"tinygo.org/x/drivers/sx126x"
+1 -1
View File
@@ -4,9 +4,9 @@
package sx126x
import (
"device/stm32"
"errors"
"machine"
"tinygo.org/x/device/stm32"
"tinygo.org/x/drivers"
)