mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-17 21:23:58 +00:00
examples: lora atcmd compiled for simulator, sx126x, and sx127x
Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
errRadioNotFound = errors.New("radio not found")
|
||||
)
|
||||
|
||||
type LoraRadio interface {
|
||||
Reset() error
|
||||
Reset()
|
||||
LoraTx(pkt []uint8, timeoutMs uint32) error
|
||||
LoraRx(timeoutMs uint32) ([]uint8, error)
|
||||
SetLoraFrequency(freq uint32)
|
||||
|
||||
Reference in New Issue
Block a user