homebrew: use ID in stead of (redundant) RepeaterID
This commit is contained in:
parent
63f4d4c602
commit
493e72583d
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
Version = "20151208"
|
||||
Version = "20151214"
|
||||
SoftwareID = fmt.Sprintf("%s:go-dmr:%s", runtime.GOOS, Version)
|
||||
PackageID = fmt.Sprintf("%s:go-dmr:%s-%s", runtime.GOOS, Version, runtime.GOARCH)
|
||||
)
|
||||
|
@ -28,7 +28,7 @@ var (
|
|||
// information about the current repeater status.
|
||||
type RepeaterConfiguration struct {
|
||||
Callsign string
|
||||
RepeaterID uint32
|
||||
ID uint32 // Our RepeaterID
|
||||
RXFreq uint32
|
||||
TXFreq uint32
|
||||
TXPower uint8
|
||||
|
@ -69,7 +69,7 @@ func (r *RepeaterConfiguration) String() string {
|
|||
|
||||
var b = "RPTC"
|
||||
b += fmt.Sprintf("%-8s", r.Callsign)
|
||||
b += fmt.Sprintf("%08x", r.RepeaterID)
|
||||
b += fmt.Sprintf("%08x", r.ID)
|
||||
b += fmt.Sprintf("%09d", r.RXFreq)
|
||||
b += fmt.Sprintf("%09d", r.TXFreq)
|
||||
b += fmt.Sprintf("%02d", r.TXPower)
|
||||
|
|
Loading…
Add table
Reference in a new issue