Skip to content

Commit

Permalink
AP_NavEKF3: always apply ekfGpsRefHgt corrections
Browse files Browse the repository at this point in the history
Co-authored-by: Pavlo Kolomiiets <[email protected]>

#24039

 When 3rd bit is set, Ardupilot doesn't use ekfGpsRefHgt to convert GPS alt to local alt. But it still updates ekfGpsRefHgt in correctEkfOriginHeight. And the innovation used in the latter is constantly non-zero.
  • Loading branch information
peterbarker committed Apr 29, 2024
1 parent ff7b583 commit c57c5c0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions libraries/AP_NavEKF3/AP_NavEKF3_Measurements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,7 @@ void NavEKF3_core::readGpsData()
if (validOrigin) {
gpsDataNew.lat = gpsloc.lat;
gpsDataNew.lng = gpsloc.lng;
if ((frontend->_originHgtMode & (1<<2)) == 0) {
gpsDataNew.hgt = (ftype)((double)0.01 * (double)gpsloc.alt - ekfGpsRefHgt);
} else {
gpsDataNew.hgt = 0.01 * (gpsloc.alt - EKF_origin.alt);
}
gpsDataNew.hgt = (ftype)((double)0.01 * (double)gpsloc.alt - ekfGpsRefHgt);
storedGPS.push(gpsDataNew);
// declare GPS in use
gpsIsInUse = true;
Expand Down

0 comments on commit c57c5c0

Please sign in to comment.