mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 00:05:33 +03:00
GPS - Add packet logging to the OLED display. Allow autobauding to be
enabled/disabled via cli (disabled by default now). Fix missing rate configuration for UBLOX SVINFO which would have resulted in missing satallite counts.
This commit is contained in:
parent
8345401ff2
commit
6ce288063e
5 changed files with 113 additions and 44 deletions
|
@ -104,7 +104,7 @@ profile_t *currentProfile;
|
|||
static uint8_t currentControlRateProfileIndex = 0;
|
||||
controlRateConfig_t *currentControlRateProfile;
|
||||
|
||||
static const uint8_t EEPROM_CONF_VERSION = 85;
|
||||
static const uint8_t EEPROM_CONF_VERSION = 86;
|
||||
|
||||
static void resetAccelerometerTrims(flightDynamicsTrims_t *accelerometerTrims)
|
||||
{
|
||||
|
@ -364,7 +364,8 @@ static void resetConf(void)
|
|||
// gps/nav stuff
|
||||
masterConfig.gpsConfig.provider = GPS_NMEA;
|
||||
masterConfig.gpsConfig.sbasMode = SBAS_AUTO;
|
||||
masterConfig.gpsConfig.gpsAutoConfig = GPS_AUTOCONFIG_ON;
|
||||
masterConfig.gpsConfig.autoConfig = GPS_AUTOCONFIG_ON;
|
||||
masterConfig.gpsConfig.autoBaud = GPS_AUTOBAUD_OFF;
|
||||
#endif
|
||||
|
||||
resetSerialConfig(&masterConfig.serialConfig);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue