mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-10 18:03:41 +00:00
59ff8a4585
Signed-off-by: deadprogram <ron@hybridgroup.com>
14 lines
320 B
Go
14 lines
320 B
Go
package main
|
|
|
|
type LoraRadio interface {
|
|
Reset() error
|
|
LoraTx(pkt []uint8, timeoutMs uint32) error
|
|
LoraRx(timeoutMs uint32) ([]uint8, error)
|
|
SetLoraFrequency(freq uint32)
|
|
SetLoraIqMode(mode uint8)
|
|
SetLoraCodingRate(cr uint8)
|
|
SetLoraBandwidth(bw uint8)
|
|
SetLoraCrc(enable bool)
|
|
SetLoraSpreadingFactor(sf uint8)
|
|
}
|