-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgptxt.go
101 lines (78 loc) · 2.65 KB
/
gptxt.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package nmea
import (
"fmt"
"strconv"
"strings"
)
// Examples:
// $GPTXT,01,01,02,ANTSTATUS=OK*3B
func NewGPTXT(m Message) *GPTXT {
return &GPTXT{Message: m}
}
type GPTXT struct {
Message
TotalNbMsgInTx int // Total number of messages in this transmission. (01~99)
MsgNumInTx int // Message number in this transmission. (01~99)
Severity Severity
/*
L80 module supports automatic antenna switching function.
The GPTXT sentence can be used to identify the status of external active antenna. The status of external active antenna is listed as below:
1. If ANTSTATUS=OK, it means external active antenna is connected and the module will use external active antenna.
2. If ANTSTATUS=OPEN, it means open-circuit state is dectected and the internal antenna is used at this time.
3. If ANTSTATUS=SHORT, it means short circuit state is dectected and the internal antenna is used.
*/
TxtMsg string
}
func (m *GPTXT) parse() (err error) {
if len(m.Fields) != 4 {
return m.Error(fmt.Errorf("Incomplete GPTXT message, not enougth data fields (got: %d, wanted: %d)", len(m.Fields), 4))
}
if m.TotalNbMsgInTx, err = strconv.Atoi(m.Fields[0]); err != nil {
return m.Error(fmt.Errorf("Unable to parse total number of messages in this transmission from data field (got: %s)", m.Fields[0]))
}
if m.MsgNumInTx, err = strconv.Atoi(m.Fields[1]); err != nil {
return m.Error(fmt.Errorf("Unable to parse message number in this transmission from data field (got: %s)", m.Fields[1]))
}
if m.Severity, err = ParseSeverity(m.Fields[2]); err != nil {
return m.Error(fmt.Errorf("Unable to parse message severity from data field (got: %s)", m.Fields[2]))
}
m.TxtMsg = strings.Join(m.Fields[3:], " ")
return nil
}
func (m GPTXT) Serialize() string { // Implement NMEA interface
hdr := TypeIDs["GPTXT"]
fields := make([]string, 0)
if m.TotalNbMsgInTx < 10 {
fields = append(fields, fmt.Sprintf("0%d", m.TotalNbMsgInTx))
} else {
fields = append(fields, fmt.Sprintf("%d", m.TotalNbMsgInTx))
}
if m.MsgNumInTx < 10 {
fields = append(fields, fmt.Sprintf("0%d", m.MsgNumInTx))
} else {
fields = append(fields, fmt.Sprintf("%d", m.MsgNumInTx))
}
fields = append(fields, m.Severity.Serialize(), m.TxtMsg)
msg := Message{Type: hdr, Fields: fields}
msg.Checksum = msg.ComputeChecksum()
return msg.Serialize()
}
func (m GPTXT) Env() map[string]string {
if fields := strings.SplitN(m.TxtMsg, "=", 2); len(fields) == 2 {
return map[string]string{
fields[0]: fields[1],
}
}
return nil
}
func (m GPTXT) AntennaStatus() *string {
env := m.Env()
if env == nil {
return nil
}
status, exists := env["ANTSTATUS"]
if !exists {
return nil
}
return &status
}