-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathat_command.go
101 lines (84 loc) · 1.67 KB
/
at_command.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 atcom
import (
"fmt"
"strings"
)
type SerialAttr struct {
Port string
Baud int
}
func DefaultSerialAttr() SerialAttr {
return SerialAttr{
Port: "",
Baud: 115200,
}
}
type ATCommand struct {
SerialAttr SerialAttr
Command string
Response []string
Processed []string
Error error
ResponseChan chan string
Urc bool
Desired []string
Fault []string
Timeout int
LineEnd bool
}
func NewATCommand(command string) *ATCommand {
return &ATCommand{
SerialAttr: DefaultSerialAttr(),
Command: command,
Desired: nil,
Fault: nil,
Timeout: 5,
LineEnd: true,
ResponseChan: nil,
Urc: false,
}
}
func (atc *ATCommand) GetMeaningfulPart(prefix string) error {
if atc.Response == nil {
return fmt.Errorf("no response")
}
var firstRow int = 0
var lastRow int = 0
var data []string
// decide start and end of meaningful part of response
for index, line := range atc.Response {
line = strings.TrimSpace(line)
// decide echo line if exists
if strings.HasPrefix(line, atc.Command) {
firstRow = index + 1
continue
}
// skip modem +X lines when prefix is empty
if prefix == "" {
if strings.HasPrefix(line, "+") {
firstRow++
continue
}
}
// decide last line of response
if line == "OK" {
lastRow = index
break
}
}
if lastRow == 0 {
return fmt.Errorf("no ok response")
}
if prefix == "" {
data = atc.Response[firstRow:lastRow]
} else {
for _, line := range atc.Response[firstRow:lastRow] {
if strings.HasPrefix(line, prefix) {
line = strings.Trim(line, prefix)
data = append(data, line)
}
}
}
atc.Processed = data
return nil
}