Compare commits
16 Commits
fd9e999b5a
...
v0.1.3
Author | SHA1 | Date | |
---|---|---|---|
6c110b9a8b | |||
cb07b6ac62 | |||
be99ed7fbf | |||
d625866d92 | |||
7ee03906f8 | |||
0b76884112 | |||
59bd2c5db3 | |||
0837d376f7 | |||
6a96656434 | |||
026c1aa3bb | |||
90a06e6afa | |||
e2e02ebbfe | |||
9bc94bfe7c | |||
061ba2a859 | |||
6498d20378 | |||
b831d44294 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
|||||||
out/
|
out/
|
||||||
Makefile
|
|
||||||
go.sum
|
go.sum
|
||||||
.git/
|
.git/
|
||||||
*.swp
|
*.swp
|
||||||
|
7
Makefile
Normal file
7
Makefile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export GOOS=linux
|
||||||
|
export GOARCH=arm
|
||||||
|
export GOARM=6
|
||||||
|
export CGO_ENABLED=0
|
||||||
|
|
||||||
|
build:
|
||||||
|
@go build -o out/modem main.go
|
@ -4,6 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"go.bug.st/serial"
|
"go.bug.st/serial"
|
||||||
@ -12,12 +13,14 @@ import (
|
|||||||
// Some constants
|
// Some constants
|
||||||
const (
|
const (
|
||||||
ReadTimeout = time.Second
|
ReadTimeout = time.Second
|
||||||
InputBufSize = 128
|
InputBufSize = 512
|
||||||
)
|
)
|
||||||
|
|
||||||
type atPort struct {
|
type atPort struct {
|
||||||
logger *log.Logger
|
logger *log.Logger
|
||||||
|
|
||||||
|
mutex sync.Mutex // Mutex for all operation with serial port
|
||||||
|
|
||||||
baudrate int
|
baudrate int
|
||||||
portName string
|
portName string
|
||||||
port serial.Port
|
port serial.Port
|
||||||
@ -27,7 +30,8 @@ type atPort struct {
|
|||||||
type Port interface {
|
type Port interface {
|
||||||
GetName() string
|
GetName() string
|
||||||
GetBaudrate() int
|
GetBaudrate() int
|
||||||
GetSerialPort() serial.Port // For extra need
|
SerialPort() serial.Port // For extra need
|
||||||
|
Mutex() sync.Locker // retruns pointer to mutex for advanced use like readign NMEA reports
|
||||||
|
|
||||||
Connect() error
|
Connect() error
|
||||||
Disconnect() error
|
Disconnect() error
|
||||||
@ -56,11 +60,18 @@ func (p *atPort) GetBaudrate() int {
|
|||||||
return p.baudrate
|
return p.baudrate
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *atPort) GetSerialPort() serial.Port {
|
func (p *atPort) SerialPort() serial.Port {
|
||||||
return p.port
|
return p.port
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *atPort) Mutex() sync.Locker {
|
||||||
|
return &p.mutex
|
||||||
|
}
|
||||||
|
|
||||||
func (p *atPort) Connect() error {
|
func (p *atPort) Connect() error {
|
||||||
|
p.mutex.Lock()
|
||||||
|
defer p.mutex.Unlock()
|
||||||
|
|
||||||
p.logger.Println("Connecting to", p.portName, "...")
|
p.logger.Println("Connecting to", p.portName, "...")
|
||||||
s, err := serial.Open(p.portName, &serial.Mode{BaudRate: p.baudrate})
|
s, err := serial.Open(p.portName, &serial.Mode{BaudRate: p.baudrate})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -76,8 +87,10 @@ func (p *atPort) Connect() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *atPort) Disconnect() error {
|
func (p *atPort) Disconnect() error {
|
||||||
|
p.mutex.Lock()
|
||||||
defer func() {
|
defer func() {
|
||||||
p.port = nil
|
p.port = nil
|
||||||
|
p.mutex.Unlock()
|
||||||
}()
|
}()
|
||||||
if err := p.port.Close(); err != nil {
|
if err := p.port.Close(); err != nil {
|
||||||
return fmt.Errorf("close port: %w", err)
|
return fmt.Errorf("close port: %w", err)
|
||||||
@ -86,16 +99,22 @@ func (p *atPort) Disconnect() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *atPort) IsConnected() bool {
|
func (p *atPort) IsConnected() bool {
|
||||||
|
p.mutex.Lock()
|
||||||
|
defer p.mutex.Unlock()
|
||||||
|
|
||||||
return p.port != nil
|
return p.port != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Low level write/read function
|
// Low level write/read function
|
||||||
func (p *atPort) RawSend(msg string) (string, error) {
|
func (p *atPort) RawSend(msg string) (string, error) {
|
||||||
|
p.mutex.Lock()
|
||||||
|
defer p.mutex.Unlock()
|
||||||
|
|
||||||
// Write
|
// Write
|
||||||
if _, err := p.port.Write([]byte(msg)); err != nil {
|
if _, err := p.port.Write([]byte(msg)); err != nil {
|
||||||
return "", fmt.Errorf("serial port write: %w", err)
|
return "", fmt.Errorf("serial port write: %w", err)
|
||||||
}
|
}
|
||||||
time.Sleep(time.Millisecond)
|
// time.Sleep(time.Millisecond)
|
||||||
// Read
|
// Read
|
||||||
readLen, err := p.port.Read(p.inputBuf)
|
readLen, err := p.port.Read(p.inputBuf)
|
||||||
// p.logger.Println(msg, "\x1b[38;2;150;150;150mRAWREAD:", string(p.inputBuf[:readLen]), "\x1b[38;2;255;255;255m")
|
// p.logger.Println(msg, "\x1b[38;2;150;150;150mRAWREAD:", string(p.inputBuf[:readLen]), "\x1b[38;2;255;255;255m")
|
||||||
@ -121,5 +140,8 @@ func (p *atPort) Send(cmd string) (Resp, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *atPort) Close() error {
|
func (p *atPort) Close() error {
|
||||||
|
p.mutex.Lock()
|
||||||
|
defer p.mutex.Unlock()
|
||||||
|
|
||||||
return p.port.Close()
|
return p.port.Close()
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,9 @@ func (resp Resp) Check() bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (resp Resp) RmFront(str string) Resp {
|
func (resp Resp) RmFront(str string) Resp {
|
||||||
|
if !resp.Check() {
|
||||||
|
return RespNil
|
||||||
|
}
|
||||||
return Resp(string(resp)[len(str):])
|
return Resp(string(resp)[len(str):])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
137
api/modem/gps.go
137
api/modem/gps.go
@ -1,137 +0,0 @@
|
|||||||
package modem
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"math"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/at"
|
|
||||||
)
|
|
||||||
|
|
||||||
type GpsData struct {
|
|
||||||
Latitude float64 `json:"Latitude"`
|
|
||||||
Longitude float64 `json:"Longitude"`
|
|
||||||
LatitudeIndicator string `json:"Latitude_indicator"` // North/South
|
|
||||||
LongitudeIndicator string `json:"Longitude_indicator"` // West/East
|
|
||||||
Speed float64 `json:"Speed"`
|
|
||||||
Course float64 `json:"-"`
|
|
||||||
Altitude float64 `json:"-"`
|
|
||||||
Date string `json:"-"`
|
|
||||||
Time string `json:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
var GpsInfoNil = GpsData{}
|
|
||||||
|
|
||||||
func deg2rad(deg float64) float64 {
|
|
||||||
return deg * (math.Pi / 180)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (gps *GpsData) calculateSpeed(newLatitude, newLongitude float64, lastUpdateTime time.Time) {
|
|
||||||
earthRad := 6371.0 // TODO ?
|
|
||||||
dLat := deg2rad(math.Abs(newLatitude - gps.Latitude))
|
|
||||||
dLon := deg2rad(math.Abs(newLongitude - gps.Longitude))
|
|
||||||
a := math.Sin(dLat/2)*math.Sin(dLat/2) +
|
|
||||||
math.Cos(deg2rad(newLatitude))*math.Cos(deg2rad(gps.Latitude))*math.Sin(dLon/2)*math.Sin(dLon/2)
|
|
||||||
c := 2 * math.Atan2(math.Sqrt(a), math.Sqrt(1-a))
|
|
||||||
|
|
||||||
gps.Speed = earthRad * c / (math.Abs(float64(time.Since(lastUpdateTime))))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse string from AT command that contains gps data
|
|
||||||
func (gps *GpsData) decode(str string) error {
|
|
||||||
var err error
|
|
||||||
newGpsInfo := GpsData{}
|
|
||||||
strs := strings.Split(strings.Split(strings.Replace(str, " ", "", -1), "\n")[0], ",")
|
|
||||||
|
|
||||||
newGpsInfo.Latitude, err = strconv.ParseFloat(strs[0], 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("parse latitude: %w", err)
|
|
||||||
}
|
|
||||||
newGpsInfo.Longitude, err = strconv.ParseFloat(strs[2], 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("parse longitude: %w", err)
|
|
||||||
}
|
|
||||||
newGpsInfo.Latitude /= 100
|
|
||||||
newGpsInfo.Longitude /= 100
|
|
||||||
newGpsInfo.LatitudeIndicator = strs[1]
|
|
||||||
newGpsInfo.LongitudeIndicator = strs[3]
|
|
||||||
newGpsInfo.Date = strs[4]
|
|
||||||
newGpsInfo.Time = strs[5]
|
|
||||||
newGpsInfo.Altitude, err = strconv.ParseFloat(strs[6], 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("parse altitude: %w", err)
|
|
||||||
}
|
|
||||||
newGpsInfo.Speed, err = strconv.ParseFloat(strs[7], 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("parse speed: %w", err)
|
|
||||||
}
|
|
||||||
// Course sometimes may be null
|
|
||||||
if len(strs[8]) > 0 {
|
|
||||||
newGpsInfo.Course, err = strconv.ParseFloat(strs[8], 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("parse course: %w", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*gps = newGpsInfo
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (gps *GpsData) Update(port at.Port) error {
|
|
||||||
if err := switchGpsMode(port, true); err != nil {
|
|
||||||
return fmt.Errorf("try to GPS mode: %w", err)
|
|
||||||
}
|
|
||||||
defer switchGpsMode(port, false)
|
|
||||||
|
|
||||||
resp, err := port.Send("AT+CGPSINFO")
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("receive GPS data: %w", err)
|
|
||||||
}
|
|
||||||
if !resp.Check() {
|
|
||||||
return fmt.Errorf("error response")
|
|
||||||
}
|
|
||||||
if err := gps.decode(strings.Split(strings.Replace(resp.RmFront("+CGPSINFO:").String(), "\r", "", -1), "\n")[0]); err != nil {
|
|
||||||
return fmt.Errorf("decode: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func switchGpsMode(port at.Port, on bool) error {
|
|
||||||
onStr := "0"
|
|
||||||
if on {
|
|
||||||
onStr = "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset input
|
|
||||||
if err := port.GetSerialPort().ResetInputBuffer(); err != nil {
|
|
||||||
return fmt.Errorf("reset input buffer: %w", err)
|
|
||||||
}
|
|
||||||
// Reset output
|
|
||||||
if err := port.GetSerialPort().ResetOutputBuffer(); err != nil {
|
|
||||||
return fmt.Errorf("reset output buffer: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check gps mode status
|
|
||||||
resp, err := port.Send("AT+CGPS?")
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("make at ask: %w", err)
|
|
||||||
}
|
|
||||||
if !resp.Check() {
|
|
||||||
return fmt.Errorf("error response")
|
|
||||||
}
|
|
||||||
ans := strings.Replace(strings.Split(strings.Split(resp.RmFront("+CGPS:").String(), "\n")[0], ",")[0], " ", "", -1)
|
|
||||||
if ans == onStr {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Modem is not in GPS mode
|
|
||||||
resp, err = port.Send("AT+CGPS=" + onStr)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("try to switch to gps: %w", err)
|
|
||||||
}
|
|
||||||
if !resp.Check() {
|
|
||||||
return fmt.Errorf("switch tp GPS failed")
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
85
api/modem/gps/data.go
Normal file
85
api/modem/gps/data.go
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
package gps
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"math"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Data struct {
|
||||||
|
Latitude float64 `json:"Latitude"`
|
||||||
|
Longitude float64 `json:"Longitude"`
|
||||||
|
LatitudeIndicator string `json:"Latitude_indicator"` // North/South
|
||||||
|
LongitudeIndicator string `json:"Longitude_indicator"` // West/East
|
||||||
|
Speed float64 `json:"Speed"`
|
||||||
|
Course float64 `json:"-"`
|
||||||
|
Altitude float64 `json:"-"`
|
||||||
|
Date string `json:"-"`
|
||||||
|
Time string `json:"-"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var GpsInfoNil = Data{}
|
||||||
|
|
||||||
|
func deg2rad(deg float64) float64 {
|
||||||
|
return deg * (math.Pi / 180)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gps *Data) CalculateSpeed(newLatitude, newLongitude float64, lastUpdateTime time.Time) {
|
||||||
|
earthRad := 6371.0 // TODO ?
|
||||||
|
dLat := deg2rad(math.Abs(newLatitude - gps.Latitude))
|
||||||
|
dLon := deg2rad(math.Abs(newLongitude - gps.Longitude))
|
||||||
|
a := math.Sin(dLat/2)*math.Sin(dLat/2) +
|
||||||
|
math.Cos(deg2rad(newLatitude))*math.Cos(deg2rad(gps.Latitude))*math.Sin(dLon/2)*math.Sin(dLon/2)
|
||||||
|
c := 2 * math.Atan2(math.Sqrt(a), math.Sqrt(1-a))
|
||||||
|
|
||||||
|
gps.Speed = earthRad * c / (math.Abs(float64(time.Since(lastUpdateTime))))
|
||||||
|
}
|
||||||
|
|
||||||
|
// To remove warning
|
||||||
|
|
||||||
|
// Parse string from AT command that contains gps data
|
||||||
|
func (gps *Data) decode(str string) error {
|
||||||
|
var err error
|
||||||
|
newGpsInfo := Data{}
|
||||||
|
strs := strings.Split(strings.Split(strings.Replace(str, " ", "", -1), "\n")[0], ",")
|
||||||
|
logger := log.New(io.Discard, "modem-gps", log.LstdFlags)
|
||||||
|
|
||||||
|
if len(strs) < 7 {
|
||||||
|
return fmt.Errorf("ERROR: too small msg: %s", strs)
|
||||||
|
}
|
||||||
|
newGpsInfo.Latitude, err = strconv.ParseFloat(strs[0], 64)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("ERROR parse latitude:", err.Error())
|
||||||
|
}
|
||||||
|
newGpsInfo.Longitude, err = strconv.ParseFloat(strs[2], 64)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("ERROR parse longitude:", err.Error())
|
||||||
|
}
|
||||||
|
newGpsInfo.Latitude /= 100
|
||||||
|
newGpsInfo.Longitude /= 100
|
||||||
|
newGpsInfo.LatitudeIndicator = strs[1]
|
||||||
|
newGpsInfo.LongitudeIndicator = strs[3]
|
||||||
|
newGpsInfo.Date = strs[4]
|
||||||
|
newGpsInfo.Time = strs[5]
|
||||||
|
newGpsInfo.Altitude, err = strconv.ParseFloat(strs[6], 64)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("ERROR parse altitude:", err.Error())
|
||||||
|
}
|
||||||
|
newGpsInfo.Speed, err = strconv.ParseFloat(strs[7], 64)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("ERROR parse speed:", err.Error())
|
||||||
|
}
|
||||||
|
// Course sometimes may be null
|
||||||
|
if len(strs[8]) > 0 {
|
||||||
|
newGpsInfo.Course, err = strconv.ParseFloat(strs[8], 64)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("ERROR parse course:", err.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*gps = newGpsInfo
|
||||||
|
return nil
|
||||||
|
}
|
106
api/modem/gps/gps.go
Normal file
106
api/modem/gps/gps.go
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
package gps
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/at"
|
||||||
|
)
|
||||||
|
|
||||||
|
type gps struct {
|
||||||
|
logger *log.Logger
|
||||||
|
port at.Port
|
||||||
|
data Data
|
||||||
|
}
|
||||||
|
|
||||||
|
type Gps interface {
|
||||||
|
Init() error
|
||||||
|
Update() error
|
||||||
|
|
||||||
|
GetData() Data
|
||||||
|
GetStatus() (Status, error)
|
||||||
|
|
||||||
|
io.Closer
|
||||||
|
}
|
||||||
|
|
||||||
|
func New(logger *log.Logger, port at.Port) Gps {
|
||||||
|
return &gps{
|
||||||
|
logger: logger,
|
||||||
|
port: port,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) Init() error {
|
||||||
|
if !g.port.IsConnected() {
|
||||||
|
return fmt.Errorf("at port is not connected")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) Update() error {
|
||||||
|
if err := g.switchGpsMode(true); err != nil {
|
||||||
|
return fmt.Errorf("try to GPS mode: %w", err)
|
||||||
|
}
|
||||||
|
defer g.switchGpsMode(false)
|
||||||
|
|
||||||
|
resp, err := g.port.Send("AT+CGPSINFO")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("receive GPS data: %w", err)
|
||||||
|
}
|
||||||
|
if !resp.Check() {
|
||||||
|
return fmt.Errorf("get GPS info: error response: %s", resp)
|
||||||
|
}
|
||||||
|
if err := g.data.decode(strings.Split(strings.Replace(resp.RmFront("+CGPSINFO:").String(), "\r", "", -1), "\n")[0]); err != nil {
|
||||||
|
g.logger.Printf("error decode: %s\n", err.Error())
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) GetData() Data {
|
||||||
|
return g.data
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) Close() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) switchGpsMode(on bool) error {
|
||||||
|
onStr := "0"
|
||||||
|
if on {
|
||||||
|
onStr = "1"
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset input
|
||||||
|
if err := g.port.SerialPort().ResetInputBuffer(); err != nil {
|
||||||
|
return fmt.Errorf("reset input buffer: %w", err)
|
||||||
|
}
|
||||||
|
// Reset output
|
||||||
|
if err := g.port.SerialPort().ResetOutputBuffer(); err != nil {
|
||||||
|
return fmt.Errorf("reset output buffer: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check gps mode status
|
||||||
|
resp, err := g.port.Send("AT+CGPS?")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("make at ask: %w", err)
|
||||||
|
}
|
||||||
|
if !resp.Check() {
|
||||||
|
return fmt.Errorf("get GPS mode: error response: %s", resp)
|
||||||
|
}
|
||||||
|
ans := strings.Replace(strings.Split(strings.Split(resp.RmFront("+CGPS:").String(), "\n")[0], ",")[0], " ", "", -1)
|
||||||
|
if ans == onStr {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Modem is not in GPS mode
|
||||||
|
resp, err = g.port.Send("AT+CGPS=" + onStr)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("set GPS mode: %w", err)
|
||||||
|
}
|
||||||
|
if !resp.Check() {
|
||||||
|
return fmt.Errorf("set GPS mode: error response: %s", resp)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
149
api/modem/gps/nmea.go
Normal file
149
api/modem/gps/nmea.go
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
package gps
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type nmeaFlags int
|
||||||
|
|
||||||
|
const (
|
||||||
|
gga nmeaFlags = 1 << iota // global positioning systemfix data
|
||||||
|
rmc // recommended minimumspecific GPS/TRANSIT data
|
||||||
|
gpgsv // GPS satellites in view
|
||||||
|
gpgsa // GPS DOP and active satellites
|
||||||
|
vtg // track made good and ground speed
|
||||||
|
xfi // Global Positioning SystemExtended FixData.)Bit 6 – GLGSV (GLONASS satellites in view GLONASSfixesonly
|
||||||
|
glgsa // 1. GPS/2. Glonass/3. GALILE DOPandActiveSatellites.
|
||||||
|
gns // fix data for GNSS receivers; output for GPS, GLONASS, GALILEO
|
||||||
|
_ // Reserved
|
||||||
|
gagsv // GALILEO satellites in view
|
||||||
|
_ // Reserved
|
||||||
|
_ // Reserved
|
||||||
|
_ // Reserved
|
||||||
|
_ // Reserved
|
||||||
|
_ // Reserved
|
||||||
|
bdpqgsa // BEIDOU/QZSS DOP and activesatellites
|
||||||
|
bdpqgsv // BEIDOUQZSS satellites in view
|
||||||
|
|
||||||
|
nmeaFlagsMask = (1 << 18) - 1
|
||||||
|
|
||||||
|
collectTimeout = 1 * time.Second
|
||||||
|
)
|
||||||
|
|
||||||
|
func secondCountDownTimer(title string, logger *log.Logger, t time.Duration) {
|
||||||
|
counter := 0
|
||||||
|
for {
|
||||||
|
if counter > int(t.Seconds()) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
logger.Printf("%s: %d/%f\n", title, counter, t.Seconds())
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
counter += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Go... otherwise will throw warning
|
||||||
|
var nmeaFlagsAll = gga | rmc | gpgsv | gpgsa | vtg | xfi | glgsa | gns | gagsv | bdpqgsa | bdpqgsv
|
||||||
|
|
||||||
|
func (g *gps) rawCollect(flags nmeaFlags) (string, error) {
|
||||||
|
// Need to omplement low level write/read here because collect must be atomic operation
|
||||||
|
// If other command is executed(write/read) it will read a part of nmea report and cause an error
|
||||||
|
|
||||||
|
// Setup gps
|
||||||
|
|
||||||
|
// Set output rate to 10Hz
|
||||||
|
if resp, err := g.port.Send("AT+CGPSNMEARATE=1"); err != nil {
|
||||||
|
return "", fmt.Errorf("AT+CGPSNMEARATE= request: %w", err)
|
||||||
|
} else {
|
||||||
|
if !resp.Check() {
|
||||||
|
return "", fmt.Errorf("set output rate: error response: %s", resp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g.switchGpsMode(true)
|
||||||
|
g.port.Mutex().Lock()
|
||||||
|
s := g.port.SerialPort()
|
||||||
|
defer func() {
|
||||||
|
g.port.Mutex().Unlock()
|
||||||
|
g.switchGpsMode(false)
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Send AT+CGPSINFOCFG=255, flags
|
||||||
|
flags &= nmeaFlagsMask
|
||||||
|
if _, err := s.Write([]byte("AT+CGPSINFOCFG=1,31\r\n")); err != nil {
|
||||||
|
return "", fmt.Errorf("serial port write 1: %w", err)
|
||||||
|
}
|
||||||
|
// Do I need to read answer
|
||||||
|
|
||||||
|
// Wait
|
||||||
|
secondCountDownTimer("Collecting NMEA data", g.logger, collectTimeout)
|
||||||
|
|
||||||
|
// Send AT+CGPSINFOCFG=0, flags
|
||||||
|
if _, err := s.Write([]byte("AT+CGPSINFOCFG=0,31\r\n")); err != nil {
|
||||||
|
return "", fmt.Errorf("serial port write 2: %w", err)
|
||||||
|
}
|
||||||
|
if _, err := s.Write([]byte("AT+CGPSFTM=0\r\n")); err != nil { // For sure because sometimes it cannot stop...
|
||||||
|
return "", fmt.Errorf("serial port write 2: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(100 * time.Millisecond) // To enshure
|
||||||
|
|
||||||
|
// Read
|
||||||
|
outBuf := make([]byte, 0)
|
||||||
|
buf := make([]byte, 128)
|
||||||
|
|
||||||
|
readLoop:
|
||||||
|
for {
|
||||||
|
n, err := s.Read(buf)
|
||||||
|
if err != nil {
|
||||||
|
return string(outBuf), fmt.Errorf("serial port read: %w", err)
|
||||||
|
}
|
||||||
|
if n == 0 {
|
||||||
|
break readLoop
|
||||||
|
}
|
||||||
|
outBuf = append(outBuf, buf[:n]...)
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(outBuf), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) collectNmeaReports(flags nmeaFlags) ([]string, error) {
|
||||||
|
// Raw collect
|
||||||
|
resp, err := g.rawCollect(flags)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("raw collect: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEBUG
|
||||||
|
// g.logger.Println("NMEA raw collect:", resp)
|
||||||
|
|
||||||
|
// Right responce struct:
|
||||||
|
// \r\n
|
||||||
|
// OK
|
||||||
|
// \r\n
|
||||||
|
// (NMEA sentence)...
|
||||||
|
// \r\n
|
||||||
|
// OK
|
||||||
|
// \r\n
|
||||||
|
strs := strings.Split(strings.Replace(resp, "\r", "", -1), "\n")
|
||||||
|
|
||||||
|
// Check
|
||||||
|
// Now wait for:
|
||||||
|
// OK
|
||||||
|
// (NMEA sentence)...
|
||||||
|
// OK
|
||||||
|
// if len(strs) < 2 {
|
||||||
|
// return nil, fmt.Errorf("responce too few rows: %d", len(strs))
|
||||||
|
// }
|
||||||
|
// if !(strs[0] == "OK" && strs[len(strs)-1] == "OK") {
|
||||||
|
// return nil, fmt.Errorf("not OK responce: [% s]", strs)
|
||||||
|
// }
|
||||||
|
|
||||||
|
// This... response is not stable
|
||||||
|
// Every time it gives one or two OK and in ramdom order
|
||||||
|
// So I will not check gor it
|
||||||
|
return strs, nil
|
||||||
|
}
|
151
api/modem/gps/status.go
Normal file
151
api/modem/gps/status.go
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
package gps
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Status struct {
|
||||||
|
GotResponses bool `json:"gotResponses"`
|
||||||
|
IsValidData bool `json:"isValidData"`
|
||||||
|
FoundSatelitesCount int `json:"foundSatelitesCount"`
|
||||||
|
ActiveSatelitesCount int `json:"activeSatelitesCount"`
|
||||||
|
Rms float32 `json:"rms"` // Root mean square
|
||||||
|
}
|
||||||
|
|
||||||
|
var StatusNil = Status{
|
||||||
|
GotResponses: false,
|
||||||
|
IsValidData: false,
|
||||||
|
FoundSatelitesCount: 0,
|
||||||
|
ActiveSatelitesCount: 0,
|
||||||
|
Rms: 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *gps) GetStatus() (Status, error) {
|
||||||
|
// Provides more information about signal and possible problems using NMEA reports
|
||||||
|
|
||||||
|
// Collect reports
|
||||||
|
reports, err := g.collectNmeaReports(nmeaFlagsAll) // Now minimum
|
||||||
|
if err != nil {
|
||||||
|
return StatusNil, fmt.Errorf("collect nmea reports: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Annalise
|
||||||
|
st := Status{}
|
||||||
|
|
||||||
|
checkLoop:
|
||||||
|
for _, s := range reports {
|
||||||
|
// Check for NMEA format
|
||||||
|
if len(s) < 1 || s[0] != '$' {
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
st.GotResponses = true
|
||||||
|
|
||||||
|
g.logger.Println("NMEA check:", s)
|
||||||
|
values := strings.Split(s, ",")
|
||||||
|
if len(values[0]) != 6 {
|
||||||
|
return StatusNil, fmt.Errorf("nmea invalid sentence: %s", s)
|
||||||
|
}
|
||||||
|
switch values[0][3:] { // Switch by content
|
||||||
|
case "GSV": // Any satelites
|
||||||
|
g.logger.Println("check GSV")
|
||||||
|
// Check len
|
||||||
|
if len(values) < 17 {
|
||||||
|
g.logger.Println("GSV too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode
|
||||||
|
// 0 - msg type
|
||||||
|
// 1 - number of msgs
|
||||||
|
// 2 - index of this msg
|
||||||
|
// 3 - number of visible satelites
|
||||||
|
// 4: - other data
|
||||||
|
|
||||||
|
// Msg index
|
||||||
|
index, err := strconv.Atoi(values[3])
|
||||||
|
if err != nil {
|
||||||
|
g.logger.Println("GSV too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
_ = index
|
||||||
|
// if index != 0 {
|
||||||
|
// g.logger.Println("discard not first GSV msg")
|
||||||
|
// continue checkLoop
|
||||||
|
// }
|
||||||
|
|
||||||
|
// Count
|
||||||
|
satCount, err := strconv.Atoi(values[4])
|
||||||
|
if err != nil {
|
||||||
|
g.logger.Println("GSV too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
st.FoundSatelitesCount = satCount
|
||||||
|
case "GSA": // Active satelites
|
||||||
|
g.logger.Println("check GSA")
|
||||||
|
|
||||||
|
// Check len
|
||||||
|
if len(values) < 17 {
|
||||||
|
g.logger.Println("GSV too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode
|
||||||
|
// 0 - msg type
|
||||||
|
// 1 - mode of selecting format
|
||||||
|
// 2 - mode of selected format
|
||||||
|
// 3:15 - IDs of active satelites
|
||||||
|
// 15: - other data
|
||||||
|
|
||||||
|
// Counting active satelites
|
||||||
|
count := 0
|
||||||
|
for _, v := range values[3:15] {
|
||||||
|
if _, err := strconv.Atoi(v); err == nil {
|
||||||
|
count += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
st.ActiveSatelitesCount = max(st.ActiveSatelitesCount, count)
|
||||||
|
case "RMC": // Minimum GPS data
|
||||||
|
g.logger.Println("check RMC")
|
||||||
|
// Check len
|
||||||
|
if len(values) < 12 {
|
||||||
|
g.logger.Println("RMC too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode
|
||||||
|
// 0 - msg type
|
||||||
|
// 1 - time
|
||||||
|
// 2 - is data valid or not
|
||||||
|
// 3: - other data
|
||||||
|
|
||||||
|
// Is valid value
|
||||||
|
if values[2] == "A" {
|
||||||
|
st.IsValidData = true
|
||||||
|
}
|
||||||
|
case "GST":
|
||||||
|
g.logger.Println("check GST")
|
||||||
|
// Check len
|
||||||
|
if len(values) < 8 {
|
||||||
|
g.logger.Println("GST too small values")
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode
|
||||||
|
// 0 - msg type
|
||||||
|
// 1 - time
|
||||||
|
// 2 - Root Mean Square
|
||||||
|
// 3: - other data
|
||||||
|
|
||||||
|
rms, err := strconv.ParseFloat(values[2], 32)
|
||||||
|
if err != nil {
|
||||||
|
g.logger.Println("RMS decode:", err.Error())
|
||||||
|
continue checkLoop
|
||||||
|
}
|
||||||
|
st.Rms = float32(rms)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return st, nil
|
||||||
|
}
|
@ -8,7 +8,7 @@ import (
|
|||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/at"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/at"
|
||||||
)
|
)
|
||||||
|
|
||||||
var apns = map[string]string{
|
var apns = map[string]string{
|
||||||
@ -103,7 +103,7 @@ func (c *conn) checkReqs() error {
|
|||||||
return fmt.Errorf("AT+CPIN? request: %w", err)
|
return fmt.Errorf("AT+CPIN? request: %w", err)
|
||||||
}
|
}
|
||||||
if !resp.Check() {
|
if !resp.Check() {
|
||||||
return fmt.Errorf("SIM card is not inserted")
|
return fmt.Errorf("validate SIM: error response: %s", resp)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -115,7 +115,7 @@ func (c *conn) ConfigurePPP() error {
|
|||||||
return fmt.Errorf("AT+CSPN? request: %w", err)
|
return fmt.Errorf("AT+CSPN? request: %w", err)
|
||||||
}
|
}
|
||||||
if !resp.Check() {
|
if !resp.Check() {
|
||||||
return fmt.Errorf("failed to check SIM provider")
|
return fmt.Errorf("get provider: error response: %s", resp)
|
||||||
}
|
}
|
||||||
strs := strings.Split(string(resp), "\"")
|
strs := strings.Split(string(resp), "\"")
|
||||||
if len(strs) < 3 {
|
if len(strs) < 3 {
|
||||||
@ -132,7 +132,7 @@ func (c *conn) ConfigurePPP() error {
|
|||||||
config := fmt.Sprintf(pppConfig, apn, c.port.GetName(), c.port.GetBaudrate())
|
config := fmt.Sprintf(pppConfig, apn, c.port.GetName(), c.port.GetBaudrate())
|
||||||
|
|
||||||
// Write to file
|
// Write to file
|
||||||
f, err := os.OpenFile("/etc/ppp/peers/"+pppConfigName, os.O_CREATE | os.O_WRONLY, 0666)
|
f, err := os.OpenFile("/etc/ppp/peers/"+pppConfigName, os.O_CREATE|os.O_WRONLY, 0666)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("open ppp config file %w", err)
|
return fmt.Errorf("open ppp config file %w", err)
|
||||||
}
|
}
|
||||||
@ -230,8 +230,7 @@ func (c *conn) Ping() bool {
|
|||||||
}
|
}
|
||||||
c.logger.Println("Ping 2 resp:", string(resp))
|
c.logger.Println("Ping 2 resp:", string(resp))
|
||||||
|
|
||||||
|
return !(strings.Contains(string(resp), "Destination Host Unreachable") || strings.Contains(string(resp), "Destination Net Unreachable")) // tmp solution
|
||||||
return !strings.Contains(string(resp), "Destination Host Unreachable") // tmp solution
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *conn) Close() error {
|
func (c *conn) Close() error {
|
||||||
|
@ -7,74 +7,83 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/at"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/at"
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/gpio"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/gpio"
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/internet"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/gps"
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/sms"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/internet"
|
||||||
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/sms"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ModemData struct {
|
type ModemData struct {
|
||||||
Port string `json:"Port"`
|
Port string `json:"Port"`
|
||||||
GpsData
|
gps.Data
|
||||||
}
|
}
|
||||||
|
|
||||||
type modem struct {
|
type modem struct {
|
||||||
// Internal values
|
// Internal values
|
||||||
logger *log.Logger
|
logger *log.Logger
|
||||||
|
mutex sync.Mutex
|
||||||
|
|
||||||
// Serial values
|
// Serial values
|
||||||
baudrate int
|
baudrate int
|
||||||
|
|
||||||
deviceName string
|
deviceName string
|
||||||
port at.Port
|
port at.Port
|
||||||
|
|
||||||
// Gpio values
|
// Gpio values
|
||||||
onOffPin gpio.Pin
|
onOffPin gpio.Pin // For turning on and off
|
||||||
|
|
||||||
// Other values
|
// Other values
|
||||||
lastUpdateTime time.Time
|
lastUpdateTime time.Time
|
||||||
|
|
||||||
// GPS
|
// GPS
|
||||||
gpsInfo GpsData
|
gps gps.Gps
|
||||||
|
|
||||||
// Internet connection
|
// Internet connection
|
||||||
ic internet.Conn
|
ic internet.Conn
|
||||||
|
|
||||||
// Sms and calls
|
// Sms and calls
|
||||||
sms sms.Dialer
|
sms sms.Sms
|
||||||
}
|
}
|
||||||
|
|
||||||
type Modem interface {
|
type Modem interface {
|
||||||
Init() error
|
Init() error
|
||||||
Validate() bool
|
IsConnected() bool
|
||||||
Update() error
|
Update() error
|
||||||
GetInfo() ModemData
|
GetData() ModemData
|
||||||
|
|
||||||
// Temp access to SMS and AT interface
|
PowerOn() error
|
||||||
Sms() sms.Dialer
|
PowerOff() error
|
||||||
At() at.Port
|
|
||||||
|
// Access to SMS, GPS, AT interfaces mostly for debug
|
||||||
|
At() at.Port // Send
|
||||||
|
Gps() gps.Gps // Update, GetData, GetStatus
|
||||||
|
Sms() sms.Sms // Send, ReadNew
|
||||||
|
|
||||||
io.Closer
|
io.Closer
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(logger *log.Logger) Modem {
|
func New(logger *log.Logger) Modem {
|
||||||
return &modem{
|
return &modem{
|
||||||
logger: logger,
|
logger: logger,
|
||||||
baudrate: 115200,
|
baudrate: 115200,
|
||||||
onOffPin: gpio.New(log.New(logger.Writer(), "gpio", log.LstdFlags), 6),
|
onOffPin: gpio.New(log.New(logger.Writer(), "gpio", log.LstdFlags), 6),
|
||||||
|
|
||||||
lastUpdateTime: time.Now(),
|
lastUpdateTime: time.Now(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) Init() error {
|
func (m *modem) Init() error {
|
||||||
|
m.mutex.Lock()
|
||||||
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
// Turn module on
|
// Turn module on
|
||||||
m.logger.Println("=============================== Turn on module")
|
m.logger.Println("=============================== Turn on module")
|
||||||
if err := m.onOffPin.Init(); err != nil {
|
if err := m.onOffPin.Init(); err != nil {
|
||||||
return fmt.Errorf("gpio pin init: %w", err)
|
return fmt.Errorf("gpio pin init: %w", err)
|
||||||
}
|
}
|
||||||
// m.onOffPin.PowerOn()
|
|
||||||
|
|
||||||
// Search
|
// Search
|
||||||
m.logger.Println("=============================== Search")
|
m.logger.Println("=============================== Search")
|
||||||
@ -98,105 +107,114 @@ func (m *modem) Init() error {
|
|||||||
return fmt.Errorf("connect: %w", err)
|
return fmt.Errorf("connect: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests
|
// Init submodules
|
||||||
m.logger.Println("=============================== Test")
|
submodulesLogger := m.logger.Writer() // FOR more logs
|
||||||
if err := m.testGPS(); err != nil {
|
// submodulesLogger := io.Discard // FOR less logs
|
||||||
return fmt.Errorf("testGPS: %w", err)
|
|
||||||
|
m.logger.Println("=============================== Init submodules")
|
||||||
|
m.ic = internet.New(log.New(submodulesLogger, "modem-internet : ", log.LstdFlags), m.port)
|
||||||
|
if err := m.ic.Init(); err != nil {
|
||||||
|
m.logger.Printf("\x1b[38;2;255;0;0mInternet: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
|
} else {
|
||||||
|
m.logger.Println("\x1b[38;2;0;255;0mInternet OK\x1b[38;2;255;255;255m")
|
||||||
}
|
}
|
||||||
|
|
||||||
// // Establish internet connection
|
m.sms = sms.New(log.New(submodulesLogger, "modem-sms : ", log.LstdFlags), m.port)
|
||||||
// m.logger.Println("=============================== Internet")
|
if err := m.sms.Init(); err != nil {
|
||||||
// m.ic = internet.New(log.New(m.logger.Writer(), "internet", log.LstdFlags), m.port)
|
m.logger.Printf("\x1b[38;2;255;0;0mSMS: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
// if err := m.ic.Init(); err != nil {
|
} else {
|
||||||
// return fmt.Errorf("internet connection init: %w", err)
|
m.logger.Println("\x1b[38;2;0;255;0mSMS OK\x1b[38;2;255;255;255m")
|
||||||
|
}
|
||||||
|
|
||||||
|
m.gps = gps.New(log.New(submodulesLogger, "modem-gps : ", log.LstdFlags), m.port)
|
||||||
|
if err := m.gps.Init(); err != nil {
|
||||||
|
m.logger.Printf("\x1b[38;2;255;0;0mgps init %w\x1b[38;2;255;255;255m\n", err)
|
||||||
|
} else {
|
||||||
|
m.logger.Println("\x1b[38;2;0;255;0mGPS OK\x1b[38;2;255;255;255m")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tests
|
||||||
|
// GPS works fine but almost always there is no signal
|
||||||
|
// m.logger.Println("=============================== Test")
|
||||||
|
// if err := m.testGPS(); err != nil {
|
||||||
|
// return fmt.Errorf("testGPS: %w", err)
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// Init sms dialer
|
|
||||||
m.sms = sms.New(log.New(m.logger.Writer(), "sms", log.LstdFlags), m.port)
|
|
||||||
if err := m.sms.Init(); err != nil {
|
|
||||||
return fmt.Errorf("sms dialer init %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) Validate() bool {
|
|
||||||
return m.isConnected()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *modem) Update() error {
|
func (m *modem) Update() error {
|
||||||
if !m.isConnected() {
|
m.mutex.Lock()
|
||||||
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
|
if !m.IsConnected() {
|
||||||
m.logger.Println("No connection to module")
|
m.logger.Println("No connection to module")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
m.logger.Println("Update")
|
m.logger.Println("Update", m.gps)
|
||||||
// ans, err := m.port.Request(at.CmdQuestion, "CGPSINFO")
|
if err := m.gps.Update(); err != nil {
|
||||||
// if err != nil {
|
m.logger.Println("gps update:", err.Error())
|
||||||
// return fmt.Errorf("check GPS info mode: %w", err)
|
}
|
||||||
// }
|
// Read new messages
|
||||||
// ok := ans == "1"
|
|
||||||
// if !ok {
|
|
||||||
// _, err := m.port.Request(at.CmdCheck, "CGPSINFO")
|
|
||||||
// if err != nil {
|
|
||||||
// return fmt.Errorf("switch to GPS info mode: %w", err)
|
|
||||||
// }
|
|
||||||
// m.logger.Println("switched to GPS mode")
|
|
||||||
// } else {
|
|
||||||
// m.logger.Println("mode in right GPS mode")
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Update
|
|
||||||
m.logger.Println("Receiving GPS data...")
|
|
||||||
resp, err := m.port.Send("AT+CGPSINFO")
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("receive GPS data: %w", err)
|
|
||||||
}
|
|
||||||
if !resp.Check() {
|
|
||||||
return fmt.Errorf("error response")
|
|
||||||
}
|
|
||||||
m.logger.Println("Decoding data...")
|
|
||||||
|
|
||||||
if err := m.gpsInfo.decode(strings.Split(strings.Replace(resp.RmFront("+CGPSINFO:").String(), "\r", "", -1), "\n")[0]); err != nil {
|
|
||||||
m.logger.Println("Gps info decode error:", err.Error())
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
m.logger.Println("Decoded successfully")
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) GetInfo() ModemData {
|
func (m *modem) GetData() ModemData {
|
||||||
|
m.mutex.Lock()
|
||||||
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
return ModemData{
|
return ModemData{
|
||||||
Port: m.port.GetName(),
|
Port: m.port.GetName(),
|
||||||
GpsData: m.gpsInfo,
|
Data: m.gps.GetData(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) Sms() sms.Dialer {
|
func (m *modem) PowerOn() error {
|
||||||
|
m.onOffPin.PowerOn() // DEBUG do not want to wait 30 seconds
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *modem) PowerOff() error {
|
||||||
|
_, err := m.At().Send("AT+CPOF")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *modem) Sms() sms.Sms {
|
||||||
return m.sms
|
return m.sms
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *modem) Gps() gps.Gps {
|
||||||
|
return m.gps
|
||||||
|
}
|
||||||
|
|
||||||
func (m *modem) At() at.Port {
|
func (m *modem) At() at.Port {
|
||||||
return m.port
|
return m.port
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) Close() error {
|
func (m *modem) Close() error { // I can't return error so I log it
|
||||||
|
m.mutex.Lock()
|
||||||
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
if err := m.sms.Close(); err != nil {
|
if err := m.sms.Close(); err != nil {
|
||||||
return fmt.Errorf("sms: %w", err)
|
m.logger.Printf("\x1b[38;2;255;0;0mclose sms error: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not right way I think
|
|
||||||
if err := m.port.Close(); err != nil {
|
if err := m.port.Close(); err != nil {
|
||||||
return fmt.Errorf("serial port: %w", err)
|
m.logger.Printf("\x1b[38;2;255;0;0mclose serial port error: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
}
|
}
|
||||||
if err := m.onOffPin.Close(); err != nil {
|
if err := m.onOffPin.Close(); err != nil {
|
||||||
return fmt.Errorf("gpio pin: %w", err)
|
m.logger.Printf("\x1b[38;2;255;0;0mclose gpio pin error: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
}
|
}
|
||||||
if err := m.ic.Close(); err != nil {
|
if err := m.ic.Close(); err != nil {
|
||||||
return fmt.Errorf("internet connection: %w", err)
|
m.logger.Printf("\x1b[38;2;255;0;0mclose internet connection error: %s\x1b[38;2;255;255;255m\n", err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///////////// Private functions
|
||||||
|
|
||||||
func (m *modem) connect() error {
|
func (m *modem) connect() error {
|
||||||
if m.port == nil {
|
if m.port == nil {
|
||||||
return fmt.Errorf("port is not defined")
|
return fmt.Errorf("port is not defined")
|
||||||
@ -211,7 +229,7 @@ func (m *modem) disconnect() error {
|
|||||||
return m.port.Disconnect()
|
return m.port.Disconnect()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) isConnected() bool {
|
func (m *modem) IsConnected() bool {
|
||||||
if m.port != nil {
|
if m.port != nil {
|
||||||
return m.port.IsConnected()
|
return m.port.IsConnected()
|
||||||
}
|
}
|
||||||
@ -231,7 +249,8 @@ func (m *modem) testGPS() error {
|
|||||||
|
|
||||||
// Difference: I do not set \n at the end of string
|
// Difference: I do not set \n at the end of string
|
||||||
func (m *modem) getShortInfo() string {
|
func (m *modem) getShortInfo() string {
|
||||||
return fmt.Sprintf("%f,%s,%f,%s", m.gpsInfo.Latitude, m.gpsInfo.LatitudeIndicator, m.gpsInfo.Longitude, m.gpsInfo.LongitudeIndicator)
|
d := m.gps.GetData()
|
||||||
|
return fmt.Sprintf("%f,%s,%f,%s", d.Latitude, d.LatitudeIndicator, d.Longitude, d.LongitudeIndicator)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) saveGPS(path string) error {
|
func (m *modem) saveGPS(path string) error {
|
||||||
@ -247,22 +266,35 @@ func (m *modem) saveGPS(path string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *modem) testConsole() {
|
// Short way to send command
|
||||||
for {
|
func (m *modem) printCmd(cmd string) {
|
||||||
var inStr string
|
if resp, err := m.port.Send(cmd); err != nil {
|
||||||
fmt.Scanln(&inStr)
|
m.logger.Println("FAILED TO SEND REQ", cmd, ":", err.Error())
|
||||||
if inStr == "exit" {
|
} else {
|
||||||
return
|
_ = resp
|
||||||
}
|
// m.logger.Println("CMD", cmd, ":", resp)
|
||||||
resp, err := m.port.Send(inStr)
|
|
||||||
if err != nil {
|
|
||||||
m.logger.Println("ERROR:", err.Error())
|
|
||||||
}
|
|
||||||
m.logger.Println(resp)
|
|
||||||
m.logger.Println("------------------")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Some required commands before checking port
|
||||||
|
func (m *modem) setupPort() error {
|
||||||
|
// Reset input
|
||||||
|
if err := m.port.SerialPort().ResetInputBuffer(); err != nil {
|
||||||
|
return fmt.Errorf("reset input buffer: %w", err)
|
||||||
|
}
|
||||||
|
// Reset output
|
||||||
|
if err := m.port.SerialPort().ResetOutputBuffer(); err != nil {
|
||||||
|
return fmt.Errorf("reset output buffer: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// These commands ensure that correct modes are set
|
||||||
|
m.printCmd("ATE0") // Sometimes enables echo mode
|
||||||
|
m.printCmd("AT+CGPSFTM=0") // Sometimes does not turn off nmea
|
||||||
|
m.printCmd("AT+CMEE=2") // Turn on errors describtion
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (m *modem) checkPort(portName string) (outErr error) {
|
func (m *modem) checkPort(portName string) (outErr error) {
|
||||||
defer func() {
|
defer func() {
|
||||||
if outErr != nil { // Clear port if there is error
|
if outErr != nil { // Clear port if there is error
|
||||||
@ -283,16 +315,14 @@ func (m *modem) checkPort(portName string) (outErr error) {
|
|||||||
}
|
}
|
||||||
defer m.port.Disconnect() // Do not bother about errors...
|
defer m.port.Disconnect() // Do not bother about errors...
|
||||||
|
|
||||||
// Reset input
|
// To filter dead ports
|
||||||
if err := m.port.GetSerialPort().ResetInputBuffer(); err != nil {
|
if _, err := m.port.Send("AT"); err != nil {
|
||||||
return fmt.Errorf("reset input buffer: %w", err)
|
return fmt.Errorf("ping error: %w", err)
|
||||||
}
|
}
|
||||||
// Reset output
|
|
||||||
if err := m.port.GetSerialPort().ResetOutputBuffer(); err != nil {
|
if err := m.setupPort(); err != nil {
|
||||||
return fmt.Errorf("reset output buffer: %w", err)
|
return fmt.Errorf("setup port: %w", err)
|
||||||
}
|
}
|
||||||
m.port.Send("ATE0") // This shit sometimes enables echo mode... why... when... but it can
|
|
||||||
// m.port.Send("\r\n")
|
|
||||||
|
|
||||||
// Ping
|
// Ping
|
||||||
m.logger.Println("Ping...")
|
m.logger.Println("Ping...")
|
||||||
@ -308,7 +338,7 @@ func (m *modem) checkPort(portName string) (outErr error) {
|
|||||||
return fmt.Errorf("get model: %w", err)
|
return fmt.Errorf("get model: %w", err)
|
||||||
}
|
}
|
||||||
if !resp.Check() {
|
if !resp.Check() {
|
||||||
return fmt.Errorf("error response: %s", resp)
|
return fmt.Errorf("get model: error response: %s", resp)
|
||||||
}
|
}
|
||||||
model := strings.Split(resp.String(), "\n")[0]
|
model := strings.Split(resp.String(), "\n")[0]
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -354,10 +384,10 @@ SearchLoop:
|
|||||||
func (m *modem) ping() error {
|
func (m *modem) ping() error {
|
||||||
resp, err := m.port.Send("AT")
|
resp, err := m.port.Send("AT")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return fmt.Errorf("AT request: %w", err)
|
||||||
}
|
}
|
||||||
if !resp.Check() {
|
if !resp.Check() {
|
||||||
return fmt.Errorf("connection lost")
|
return fmt.Errorf("AT request: error response: %s", resp)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem/at"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem/at"
|
||||||
)
|
)
|
||||||
|
|
||||||
type dialer struct {
|
type dialer struct {
|
||||||
@ -14,14 +14,15 @@ type dialer struct {
|
|||||||
port at.Port
|
port at.Port
|
||||||
}
|
}
|
||||||
|
|
||||||
type Dialer interface {
|
type Sms interface {
|
||||||
Init() error
|
Init() error
|
||||||
Send(number, msg string) error
|
Send(number, msg string) error // Send sms
|
||||||
ReadNew() ([]string, error)
|
ReadNew() ([]string, error) // Read new smses
|
||||||
|
|
||||||
io.Closer
|
io.Closer
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(logger *log.Logger, port at.Port) Dialer {
|
func New(logger *log.Logger, port at.Port) Sms {
|
||||||
return &dialer{
|
return &dialer{
|
||||||
logger: logger,
|
logger: logger,
|
||||||
port: port,
|
port: port,
|
||||||
@ -33,25 +34,38 @@ func (d *dialer) Init() error {
|
|||||||
if !d.port.IsConnected() {
|
if !d.port.IsConnected() {
|
||||||
return fmt.Errorf("serial port is not connected")
|
return fmt.Errorf("serial port is not connected")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check SIM an PIN
|
||||||
|
if resp, err := d.port.Send("AT+CPIN?"); err != nil || !resp.Check() {
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("check pin: %w", err)
|
||||||
|
}
|
||||||
|
return fmt.Errorf("check pin: error response: %s", resp)
|
||||||
|
}
|
||||||
|
|
||||||
// Ensure text format
|
// Ensure text format
|
||||||
|
d.logger.Println(d.port.Send("AT+CMGF"))
|
||||||
if resp, err := d.port.Send("AT+CMGF=1"); err != nil || !resp.Check() {
|
if resp, err := d.port.Send("AT+CMGF=1"); err != nil || !resp.Check() {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("AT+CMGF=1 request: %w", err)
|
return fmt.Errorf("set to text format request: %w", err)
|
||||||
}
|
}
|
||||||
return fmt.Errorf("failed to set SMS format")
|
return fmt.Errorf("set SIM format: error response: %s", resp)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *dialer) Send(number, msg string) error {
|
func (d *dialer) Send(number, msg string) error {
|
||||||
d.port.Send(fmt.Sprintf("AT+CMGS=\"%s\"", number)) // Because it will throw error
|
d.port.Send(fmt.Sprintf(`AT+CMGS="%s"`, number)) // Because it will throw error
|
||||||
resp, err := d.port.RawSend(fmt.Sprintf("%s\x1A", msg)) // Add additional \r\n because there is not supposed to be
|
resp, err := d.port.RawSend(fmt.Sprintf("%s\n\r", msg)) // Add additional \r\n because there is not supposed to be
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("message request: %w", err)
|
return fmt.Errorf("message request: %w", err)
|
||||||
}
|
}
|
||||||
if at.Resp(resp).Check() {
|
d.logger.Println("SEND RESPONSE:", resp)
|
||||||
return nil
|
resp, err = d.port.RawSend("\x1A")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("message request: %w", err)
|
||||||
}
|
}
|
||||||
|
d.logger.Println("SEND RESPONSE:", resp)
|
||||||
errCode, err := GetError([]byte(resp))
|
errCode, err := GetError([]byte(resp))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("send sms failed and failed to get error: %w", err)
|
return fmt.Errorf("send sms failed and failed to get error: %w", err)
|
||||||
@ -61,7 +75,7 @@ func (d *dialer) Send(number, msg string) error {
|
|||||||
|
|
||||||
// Reads all new messages
|
// Reads all new messages
|
||||||
func (d *dialer) ReadNew() ([]string, error) {
|
func (d *dialer) ReadNew() ([]string, error) {
|
||||||
resp, err := d.port.Send("AT+CMGL")
|
resp, err := d.port.Send("AT+CMGL=\"UNREAD\"")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("AT+CMGL request: %w", err)
|
return nil, fmt.Errorf("AT+CMGL request: %w", err)
|
||||||
}
|
}
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module github.com/CGSG-2021-AE4/modem-test
|
module gitea.unprism.ru/KRBL/sim-modem
|
||||||
|
|
||||||
go 1.22.5
|
go 1.22.5
|
||||||
|
|
||||||
|
40
main.go
40
main.go
@ -4,7 +4,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/CGSG-2021-AE4/modem-test/api/modem"
|
"gitea.unprism.ru/KRBL/sim-modem/api/modem"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -16,28 +16,46 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func mainE() error {
|
func mainE() error {
|
||||||
m := modem.New(log.New(os.Stdout, "modem:", log.LstdFlags))
|
logger := log.New(os.Stdout, "main : ", log.LstdFlags)
|
||||||
log.Println("||||||||||||||||| INIT |||||||||||||||")
|
m := modem.New(log.New(logger.Writer(), "modem : ", log.LstdFlags))
|
||||||
|
logger.Println("||||||||||||||||| INIT |||||||||||||||")
|
||||||
if err := m.Init(); err != nil {
|
if err := m.Init(); err != nil {
|
||||||
return err
|
logger.Println("Init ended with error:", err.Error())
|
||||||
|
logger.Println("Try to turn on")
|
||||||
|
if err := m.PowerOn(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logger.Println("Reinit")
|
||||||
|
if err := m.Init(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if !m.Validate() {
|
if !m.IsConnected() {
|
||||||
log.Println("AAAAAAAAAAAAAAA Validation failed")
|
logger.Println("AAAAAAAAAAAAAAA Modem is not connected")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
log.Println("||||||||||||||||| GET INFO |||||||||||||||||")
|
logger.Println("||||||||||||||||| GET INFO |||||||||||||||||")
|
||||||
log.Println(m.GetInfo())
|
logger.Println(m.Update())
|
||||||
|
logger.Printf("DATA: %+v\n", m.GetData())
|
||||||
|
|
||||||
log.Println("||||||||||||||||| SEND SMS |||||||||||||||||")
|
logger.Println("||||||||||||||||| SEND SMS |||||||||||||||||")
|
||||||
log.Println(m.At().Send("AT+CNUM"))
|
logger.Println(m.At().Send("AT+CNUM"))
|
||||||
// if err := m.Sms().Send("+79218937173", "CGSG forever"); err != nil {
|
// if err := m.Sms().Send("+79218937173", "CGSG forever"); err != nil {
|
||||||
// return err
|
// return err
|
||||||
// }
|
// }
|
||||||
if ms, err := m.Sms().ReadNew(); err != nil {
|
if ms, err := m.Sms().ReadNew(); err != nil {
|
||||||
return err
|
return err
|
||||||
} else {
|
} else {
|
||||||
log.Println("NEW:", ms)
|
logger.Println("NEW:", ms)
|
||||||
}
|
}
|
||||||
|
logger.Println("||||||||||||||||| Checking gps status |||||||||||||||||")
|
||||||
|
st, err := m.Gps().GetStatus()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logger.Printf("GPS Status:%+v\n", st)
|
||||||
|
|
||||||
|
// logger.Println("Turn off", m.PowerOff())
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user