mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-05 15:33:42 +00:00
cb49783f18
nouns or acronyms) or end with punctuation, since they are usually printed following other context.
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package gps
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
// flight mode disables the GPS COCOM limits
|
|
var flight_mode_cmd = [...]byte{
|
|
0xB5, 0x62, 0x06, 0x24, 0x24, 0x00, 0xFF, 0xFF, 0x06, 0x03, 0x00, 0x00, 0x00,
|
|
0x00, 0x10, 0x27, 0x00, 0x00, 0x05, 0x00, 0xFA, 0x00, 0xFA, 0x00, 0x64, 0x00,
|
|
0x2C, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x16, 0xDC}
|
|
|
|
// Sets CFG-GNSS to disable everything other than GPS GNSS
|
|
// solution. Failure to do this means GPS power saving
|
|
// doesn't work. Not needed for MAX7, needed for MAX8's
|
|
var cfg_gnss_cmd = [...]byte{
|
|
0xB5, 0x62, 0x06, 0x3E, 0x2C, 0x00, 0x00, 0x00,
|
|
0x20, 0x05, 0x00, 0x08, 0x10, 0x00, 0x01, 0x00,
|
|
0x01, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x00,
|
|
0x01, 0x01, 0x03, 0x08, 0x10, 0x00, 0x00, 0x00,
|
|
0x01, 0x01, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00,
|
|
0x01, 0x01, 0x06, 0x08, 0x0E, 0x00, 0x00, 0x00,
|
|
0x01, 0x01, 0xFC, 0x11}
|
|
|
|
func FlightMode(gpsDevice GPSDevice) (err error) {
|
|
err = sendCommand(gpsDevice, flight_mode_cmd[:])
|
|
return err
|
|
}
|
|
|
|
func SetCfgGNSS(gpsDevice GPSDevice) (err error) {
|
|
err = sendCommand(gpsDevice, cfg_gnss_cmd[:])
|
|
return err
|
|
}
|
|
|
|
func sendCommand(gpsDevice GPSDevice, command []byte) (err error) {
|
|
gpsDevice.WriteBytes(command)
|
|
start := time.Now()
|
|
for time.Now().Sub(start) < 1000 {
|
|
if gpsDevice.readNextByte() == '\n' {
|
|
if gpsDevice.readNextByte() == 0xB5 {
|
|
gpsDevice.readNextByte()
|
|
if gpsDevice.readNextByte() == 0x05 {
|
|
if gpsDevice.readNextByte() == 0x01 {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return errors.New("no ACK to GPS command")
|
|
}
|