Files
drivers/lora/lorawan/region/regionset.go
T
2023-01-29 23:56:19 +01:00

17 lines
301 B
Go

package region
type Channel struct {
Frequency uint32
Bandwidth uint8
SpreadingFactor uint8
CodingRate uint8
PreambleLength uint16
TxPowerDBm int8
}
type RegionSettings interface {
JoinRequestChannel() *Channel
JoinAcceptChannel() *Channel
UplinkChannel() *Channel
}