mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-15 12:23:41 +00:00
15 lines
261 B
Go
15 lines
261 B
Go
package region
|
|
|
|
type Channel struct {
|
|
Frequency uint32
|
|
Bandwidth uint8
|
|
SpreadingFactor uint8
|
|
CodingRate uint8
|
|
}
|
|
|
|
type RegionSettings interface {
|
|
GetJoinRequestChannel() Channel
|
|
GetJoinAcceptChannel() Channel
|
|
GetUplinkChannel() Channel
|
|
}
|