mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 07:28:29 -04:00
AP_GPS: fixed TMODE config issue on non-F9 GPS
thanks to Michel Pastor for reporting this
This commit is contained in:
parent
49069c7ad5
commit
7bec9d87b4
@ -931,6 +931,10 @@ AP_GPS_UBLOX::_parse_gps(void)
|
|||||||
// check for F9. The F9 does not respond to SVINFO, so we need to use MON_VER
|
// check for F9. The F9 does not respond to SVINFO, so we need to use MON_VER
|
||||||
// for hardware generation
|
// for hardware generation
|
||||||
if (strncmp(_version.hwVersion, "00190000", 8) == 0) {
|
if (strncmp(_version.hwVersion, "00190000", 8) == 0) {
|
||||||
|
if (_hardware_generation != UBLOX_F9) {
|
||||||
|
// need to ensure time mode is correctly setup on F9
|
||||||
|
_unconfigured_messages |= CONFIG_TMODE_MODE;
|
||||||
|
}
|
||||||
_hardware_generation = UBLOX_F9;
|
_hardware_generation = UBLOX_F9;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
#define CONFIG_ALL (CONFIG_RATE_NAV | CONFIG_RATE_POSLLH | CONFIG_RATE_STATUS | CONFIG_RATE_SOL | CONFIG_RATE_VELNED \
|
#define CONFIG_ALL (CONFIG_RATE_NAV | CONFIG_RATE_POSLLH | CONFIG_RATE_STATUS | CONFIG_RATE_SOL | CONFIG_RATE_VELNED \
|
||||||
| CONFIG_RATE_DOP | CONFIG_RATE_MON_HW | CONFIG_RATE_MON_HW2 | CONFIG_RATE_RAW | CONFIG_VERSION \
|
| CONFIG_RATE_DOP | CONFIG_RATE_MON_HW | CONFIG_RATE_MON_HW2 | CONFIG_RATE_RAW | CONFIG_VERSION \
|
||||||
| CONFIG_NAV_SETTINGS | CONFIG_GNSS | CONFIG_SBAS | CONFIG_TMODE_MODE)
|
| CONFIG_NAV_SETTINGS | CONFIG_GNSS | CONFIG_SBAS)
|
||||||
|
|
||||||
//Configuration Sub-Sections
|
//Configuration Sub-Sections
|
||||||
#define SAVE_CFG_IO (1<<0)
|
#define SAVE_CFG_IO (1<<0)
|
||||||
|
Loading…
Reference in New Issue
Block a user