-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrak811.go
659 lines (571 loc) · 15.1 KB
/
rak811.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
package rak811
import (
"bufio"
"bytes"
"errors"
"fmt"
"io"
"log"
"strings"
"time"
"github.com/tarm/serial"
"periph.io/x/conn/v3/gpio"
"periph.io/x/conn/v3/gpio/gpioreg"
)
const (
CodeArgErr = -1
CodeArgNotFind = -2
CodeJoinAbpErr = -3
CodeJoinOtaaErr = -4
CodeNotJoin = -5
CodeMacBusyErr = -6
CodeTxErr = -7
CodeInterErr = -8
CodeWrCfgErr = -11
CodeRdCfgErr = -12
CodeTxLenLimitErr = -13
CodeUnknownErr = -20
StatusRecvData = 0
StatusTxConfirmed = 1
StatusTxUnconfirmed = 2
StatusJoinedSuccess = 3
StatusJoinedFailed = 4
StatusTxTimeout = 5
StatusRx2Timeout = 6
StatusDownlinkRepeated = 7
StatusWakeUp = 8
StatusP2pComplete = 9
StatusUnknown = 100
// event response prefix
eventRespPrefix = "at+recv="
// JoinSuccess successful join.
JoinSuccess = "at+recv=3,0,0"
// JoinFail incorrect join config parameters.
JoinFail = "at+recv=4,0,0"
// JoinTimeout no response from a gateway.
JoinTimeout = "at+recv=6,0,0"
CrLf = "\r\n"
OK = "OK"
ERROR = "ERROR"
)
// LoraError type that describes the LoRaWAN errors
type LoraError struct {
code int
desc string
}
// Code returns the error code
func (e *LoraError) Code() int {
return e.code
}
// Error returns the error description
func (e *LoraError) Error() string {
return e.desc
}
// WhichError translates an error string to a LoraError
func WhichError(error string) *LoraError {
if !strings.HasPrefix(error, ERROR) {
return nil
}
// TODO: turn error strings into constants
errCode := strings.TrimPrefix(error, ERROR)
switch errCode {
case "-1":
return whichError(CodeArgErr, "invalid argument")
case "-2":
return whichError(CodeArgNotFind, "argument is not available")
case "-3":
return whichError(CodeJoinAbpErr, "can't join network using ABP")
case "-4":
return whichError(CodeJoinOtaaErr, "can't join network using OTAA")
case "-5":
return whichError(CodeNotJoin, "can't send packet, failed to join network")
case "-6":
return whichError(CodeMacBusyErr, "can't send packet, busy channel")
case "-7":
return whichError(CodeTxErr, "can't send packet, transmission error")
case "-8":
return whichError(CodeInterErr, "")
case "-11":
return whichError(CodeWrCfgErr, "configuration write error")
case "-12":
return whichError(CodeRdCfgErr, "configuration read error")
case "-13":
return whichError(CodeTxLenLimitErr, "transmission length limit error")
case "-20":
return whichError(CodeUnknownErr, "unknown error")
}
return nil
}
type EventResponse struct {
code int
desc string
}
func (e *EventResponse) Code() int {
return e.code
}
func (e *EventResponse) Description() string {
return e.desc
}
func WhichEventResponse(resp string) *EventResponse {
if !strings.HasPrefix(resp, "at+recv=") {
return nil
}
evt := strings.TrimPrefix(resp, eventRespPrefix)
status := strings.Split(evt, ",")[0]
switch status {
case "0":
return whichEventResponse(StatusRecvData, "received data from server or P2P")
case "1":
return whichEventResponse(StatusTxConfirmed, "transmission succeeded and received ACK from server")
case "2":
return whichEventResponse(StatusTxUnconfirmed, "transmission succeeded")
case "3":
return whichEventResponse(StatusJoinedSuccess, "join network procedure was successful")
case "4":
return whichEventResponse(StatusJoinedFailed, "join network procedure failed")
case "5":
return whichEventResponse(StatusTxTimeout, "transmission timeout")
case "6":
return whichEventResponse(StatusRx2Timeout, "join network procedure timeout, no response from the gateway")
case "7":
return whichEventResponse(StatusDownlinkRepeated, "downlink repeated")
case "8":
return whichEventResponse(StatusWakeUp, "module is awake")
case "9":
return whichEventResponse(StatusP2pComplete, "lora P2P continues transmission has completed")
case "100":
return whichEventResponse(StatusUnknown, "unknown status")
}
return nil
}
type StopBits int8
type Parity int8
const (
Stop1 StopBits = 1
Stop1Half StopBits = 15
Stop2 StopBits = 2
)
const (
ParityNone Parity = 'N'
ParityOdd Parity = 'O'
ParityEven Parity = 'E'
ParityMark Parity = 'M' // parity bit is always 1
ParitySpace Parity = 'S' // parity bit is always 0
)
type extraConfig struct {
debug bool
}
type Config struct {
Name string
Baud int
Parity Parity
StopBits StopBits
Size uint8
Timeout time.Duration
}
type config func(*Config)
type Lora struct {
config *extraConfig
port io.ReadWriteCloser
}
func New(conf *Config) (*Lora, error) {
defaultConfig := &Config{
Name: "/dev/ttyAMA0",
Baud: 115200,
Parity: ParityNone,
StopBits: Stop1,
Size: 8,
Timeout: 60 * time.Second,
}
newConfig(conf)(defaultConfig)
p, err := serial.OpenPort(&serial.Config{
Name: defaultConfig.Name,
Baud: defaultConfig.Baud,
ReadTimeout: defaultConfig.Timeout,
Size: defaultConfig.Size,
Parity: serial.Parity(defaultConfig.Parity),
StopBits: serial.StopBits(defaultConfig.StopBits),
})
if err != nil {
log.Fatal(err)
}
return newLora(p)
}
func newLora(p io.ReadWriteCloser) (*Lora, error) {
return &Lora{
port: p,
config: &extraConfig{
debug: false,
},
}, nil
}
func (l *Lora) tx(cmd string, fn func(l *Lora) (string, error)) (string, error) {
if _, err := l.port.Write(createCmd(cmd)); err != nil {
return "", fmt.Errorf("failed to write command %q with: %v", cmd, err)
}
return fn(l)
}
//func (l *Lora) tx(s string, fn func([]byte) (string, error)) (string, error) {
// cmd := createCmd(s)
// _, err := l.port.Write(cmd)
// if err != nil {
// return "", fmt.Errorf("failed to write command %q with: %v", cmd, err)
// }
// debug(l, fmt.Sprintf("tx: write: %s", string(cmd)))
//
// //buf := bytes.Buffer{}
// //_, err = buf.ReadFrom(l.port)
// //if err != nil {
// // return "", fmt.Errorf("failed to read response from %q: %v", cmd, err)
// //}
// buf := make([]byte, 128)
// n, err := l.port.Read(buf)
// if err != nil && err != io.EOF {
// return "", fmt.Errorf("failed to read response from %q: %v", cmd, err)
// }
//
// debug(l, fmt.Sprintf("tx: read: %s", string(buf)))
//
// return fn(buf[:n])
//}
func debug(l *Lora, format string) {
if l.config.debug {
fmt.Printf("%s\n", format)
}
}
//
// System Commands
//
// Version get module version
func (l *Lora) Version() (string, error) {
return l.tx("version", readline)
}
// Sleep enter sleep mode
func (l *Lora) Sleep() (string, error) {
return l.tx("sleep", readline)
}
// Debug set debug mode on or off
func (l *Lora) Debug(mode bool) {
l.config.debug = mode
}
// Reset module or LoRaWAN stack
// 0: reset and restart module
// 1: reset LoRaWAN stack and the module will reload
// LoRa configuration from EEPROM
func (l *Lora) Reset(mode int) (string, error) {
return l.tx(fmt.Sprintf("reset=%d", mode), readline)
}
// HardReset the module by resetting the hat pins.
func (l *Lora) HardReset() (string, error) {
pin := gpioreg.ByName("GPIO17")
if err := pin.Out(gpio.Low); err != nil {
return "", err
}
time.Sleep(10 * time.Millisecond)
if err := pin.Out(gpio.High); err != nil {
return "", err
}
time.Sleep(2000 * time.Millisecond)
buf := bytes.Buffer{}
_, err := buf.ReadFrom(l.port)
if err != nil {
return "", fmt.Errorf("failed reading response: %v", err)
}
return buf.String(), nil
}
// Reload set LoRaWAN and LoraP2P configurations to default
func (l *Lora) Reload() (string, error) {
return l.tx("reload", readline)
}
// GetMode get module mode
func (l *Lora) GetMode() (string, error) {
return l.tx("mode", readline)
}
// SetMode set module to work for LoRaWAN or LoraP2P mode, defaults to 0
func (l *Lora) SetMode(mode int) (string, error) {
return l.tx(fmt.Sprintf("mode=%d", mode), readline)
}
// GetRecvEx get RSSI & SNR report on receive flag (Enabled/Disabled).
func (l *Lora) GetRecvEx() (string, error) {
return l.tx("recv_ex", readline)
}
// SetRecvEx set RSSI & SNR report on receive flag (Enabled/Disabled).
func (l *Lora) SetRecvEx(mode int) (string, error) {
return l.tx(fmt.Sprintf("recv_ex=%d", mode), readline)
}
// Close the serial conn.
func (l *Lora) Close() {
if err := l.port.Close(); err != nil {
fmt.Printf("failed closing conn: %v", err)
}
}
//
// LoRaWAN commands
//
// SetConfig set LoRaWAN configurations
func (l *Lora) SetConfig(config string) (string, error) {
return l.tx(fmt.Sprintf("set_config=%v", config), readline)
}
// GetConfig LoRaWAN configuration
func (l *Lora) GetConfig(key string) (string, error) {
return l.tx(fmt.Sprintf("get_config=%s", key), readline)
}
// GetBand LoRaWAN band region
func (l *Lora) GetBand() (string, error) {
return l.tx("band", readline)
}
// SetBand LoRaWAN band region
func (l *Lora) SetBand(band string) (string, error) {
return l.tx(fmt.Sprintf("band=%s", band), readline)
}
// JoinOTAA join the configured network in OTAA mode.
// The module doesn't accept any other command before it returns a response.
// Response: JoinSuccess, JoinFail, JoinTimeout
func (l *Lora) JoinOTAA() (string, error) {
return l.tx("join=otaa", func(l *Lora) (string, error) {
resp, err := readline(l)
if err != nil {
return "", err
}
if strings.HasPrefix(resp, OK) {
resp, err := readline(l)
if err == nil && resp != "" {
switch resp {
case JoinSuccess:
return JoinSuccess, nil
case JoinFail:
return JoinFail, nil
case JoinTimeout:
return JoinTimeout, nil
default:
return "", fmt.Errorf("invalid join response resp: %v", resp)
}
}
}
return resp, err
})
//return l.tx("join=otaa", func(b []byte) (string, error) {
// scanner := bufio.NewScanner(bytes.NewReader(b))
// scanner.Split(bufio.ScanLines)
//
// for scanner.Scan() {
// line := scanner.Text()
// switch line {
// case OK:
// continue
// case JoinSuccess:
// return JoinSuccess, nil
// case JoinFail:
// return JoinFail, nil
// case JoinTimeout:
// return JoinTimeout, nil
// default:
// return line, fmt.Errorf("invalid join response line: %v", line)
// }
// }
//
// err := scanner.Err()
// if err != nil {
// return "", err
// }
// return "", nil
//})
}
// JoinABP join the configured network in ABP mode
func (l *Lora) JoinABP() (string, error) {
return l.tx("join=abp", readline)
}
// Signal check the radio rssi, snr, update by latest received radio packet
func (l *Lora) Signal() (string, error) {
return l.tx("signal", readline)
}
// GetDataRate get next send data rate
func (l *Lora) GetDataRate() (string, error) {
return l.tx("dr", readline)
}
// SetDataRate set next send data rate
func (l *Lora) SetDataRate(datarate string) (string, error) {
return l.tx(fmt.Sprintf("dr=%s", datarate), readline)
}
// GetLinkCnt get LoRaWAN uplink and down-link counter
func (l *Lora) GetLinkCnt() (string, error) {
return l.tx("link_cnt", readline)
}
// SetLinkCnt set LoRaWAN uplink and down-link counter
func (l *Lora) SetLinkCnt(uplinkCnt, downlinkCnt float32) (string, error) {
return l.tx(fmt.Sprintf("link_cnt=%f,%f", uplinkCnt, downlinkCnt), readline)
}
// GetABPInfo get ABP information
func (l *Lora) GetABPInfo() (string, error) {
return l.tx("abp_info", readline)
}
// Send sends data to LoRaWAN network, returns the event response
func (l *Lora) Send(data string) (string, error) {
return l.tx(fmt.Sprintf("send=%s", data), func(l *Lora) (string, error) {
resp, err := readline(l)
if err != nil {
return "", err
}
if strings.HasPrefix(resp, OK) {
resp, err := readline(l)
if err != nil {
return "", err
}
return resp, nil
}
return resp, errors.New(resp)
})
//return l.tx(fmt.Sprintf("send=%s", data), func(b []byte) (string, error) {
// scanner := bufio.NewScanner(bytes.NewReader(b))
// scanner.Split(bufio.ScanLines)
//
// for scanner.Scan() {
// line := scanner.Text()
// switch {
// case line == OK:
// continue
// case line != "":
// return line, nil
// }
// }
//
// err := scanner.Err()
// if err != nil {
// return "", err
// }
// return "", nil
//})
}
// Recv receive event and data from LoRaWAN or LoRaP2P network
func (l *Lora) Recv(data string) (string, error) {
return l.tx(fmt.Sprintf("recv=%s", data), readline)
}
// GetRfConfig get RF parameters
func (l *Lora) GetRfConfig() (string, error) {
return l.tx("rf_config", readline)
}
// SetRfConfig Set RF parameters
func (l *Lora) SetRfConfig(parameters string) (string, error) {
return l.tx(fmt.Sprintf("rf_config=%s", parameters), readline)
}
// Txc send LoraP2P message
func (l *Lora) Txc(parameters string) (string, error) {
return l.tx(fmt.Sprintf("txc=%s", parameters), readline)
}
// Rxc set module in LoraP2P receive mode
func (l *Lora) Rxc(enable int) (string, error) {
return l.tx(fmt.Sprintf("rxc=%d", enable), readline)
}
// TxStop stops LoraP2P TX
func (l *Lora) TxStop() (string, error) {
return l.tx("tx_stop", readline)
}
// RxStop LoraP2P RX
func (l *Lora) RxStop() (string, error) {
return l.tx("rx_stop", readline)
}
//
// Radio commands
//
// GetRadioStatus get radio statistics
func (l *Lora) GetRadioStatus() (string, error) {
return l.tx("status", readline)
}
// ClearRadioStatus clear radio statistics
func (l *Lora) ClearRadioStatus() (string, error) {
return l.tx("status=0", readline)
}
func createCmd(cmd string) []byte {
return []byte(fmt.Sprintf("at+%v\r\n", cmd))
}
//
// Peripheral commands
//
// GetUART get UART configurations
func (l *Lora) GetUART() (string, error) {
return l.tx("uart", readline)
}
// SetUART set UART configurations
func (l *Lora) SetUART(configuration string) (string, error) {
return l.tx(fmt.Sprintf("uart=%s", configuration), readline)
}
func readline(l *Lora) (string, error) {
reader := bufio.NewReader(l.port)
for {
resp, err := reader.ReadString('\n')
if err != nil {
// serial timeout has triggered
if err == io.EOF {
if isOk(resp) {
return resp, nil
}
if err := isError(resp); err != nil {
return "", err
}
continue // proceed until the global timeout operation kicks in
}
return "", fmt.Errorf("failed read: %v", err)
}
resp = strings.TrimSuffix(strings.TrimSpace(resp), "\r")
return resp, nil
}
}
//func readline(b []byte) (string, error) {
// scanner := bufio.NewScanner(bytes.NewReader(b))
// scanner.Split(bufio.ScanLines)
//
// for scanner.Scan() {
// line := scanner.Text()
// if isOk(line) {
// return line, nil
// }
//
// if err := isError(line); err != nil {
// return "", err
// }
// continue
// }
//
// err := scanner.Err()
// if err != nil {
// return "", err
// }
// return "", nil
//}
func newConfig(config *Config) config {
return func(defaultConfig *Config) {
if config.Baud > 0 {
defaultConfig.Baud = config.Baud
}
if config.Name != "" {
defaultConfig.Name = config.Name
}
if config.Timeout > 0 {
defaultConfig.Timeout = config.Timeout
}
}
}
func isOk(msg string) bool {
if strings.HasPrefix(msg, OK) {
return true
}
return false
}
func isError(msg string) error {
if strings.HasPrefix(msg, ERROR) {
return errors.New(msg)
}
return nil
}
func whichError(code int, desc string) *LoraError {
return &LoraError{
code: code,
desc: desc,
}
}
func whichEventResponse(statusCode int, desc string) *EventResponse {
return &EventResponse{
statusCode,
desc,
}
}