You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why not add a button to the settings page to enable/disable SBAS? (We can only add it to developer mode if we think it is to much detail for normal users)
This the ublox 7 configuration:
updatespeed := []byte{0x64, 0x00, 0x01, 0x00, 0x01, 0x00} // 10Hz=100ms, cycle=1
and this is the ublox 8 configuration:
updatespeed = []byte{0x06, 0x00, 0xF4, 0x01, 0x01, 0x00} //
These bytes don't make any sense to me unless I missed something, 2Hz would mean 500ms -> 0xF4 0x01, followed by 0x01, 0x00 for cycle=1
corrected:
updatespeed := []byte{0xF4, 0x01, 0x01, 0x00, 0x01, 0x00} // 2Hz=500ms, cycle=1
stratux/main/gps.go
Line 313 in 50e2b3c
The text was updated successfully, but these errors were encountered: