mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-13 11:23:40 +00:00
17 lines
301 B
Go
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
|
|
}
|