mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-16 04:43:25 +00:00
e95cfe66c1
Adds a driver for us 915 protocol to the lora WAN drivers.
18 lines
303 B
Go
18 lines
303 B
Go
package region
|
|
|
|
type RegionSettings interface {
|
|
JoinRequestChannel() Channel
|
|
JoinAcceptChannel() Channel
|
|
UplinkChannel() Channel
|
|
}
|
|
|
|
type Channel interface {
|
|
Next() bool
|
|
Frequency() uint32
|
|
Bandwidth() uint8
|
|
SpreadingFactor() uint8
|
|
CodingRate() uint8
|
|
PreambleLength() uint16
|
|
TxPowerDBm() int8
|
|
}
|