Skip to content

Commit

Permalink
EKF3: allow earth-frame fields to be estimated with an origin but no GPS
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Nov 28, 2023
1 parent 0d932e8 commit 3a6362d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions libraries/AP_NavEKF3/AP_NavEKF3_Measurements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,23 @@ void NavEKF3_core::readGpsData()
// check for new GPS data
const auto &gps = dal.gps();

Vector3f magNED;
getMagNED(magNED);
if (gps.status() == AP_DAL_GPS::NO_GPS && validOrigin) {
// if there is not gps, we should still align if we have a valid origin
alignMagStateDeclination();
const auto &compass = dal.compass();
if (compass.have_scale_factor(magSelectIndex) &&
compass.auto_declination_enabled()) {
getEarthFieldTable(EKF_origin);
if (frontend->_mag_ef_limit > 0) {
// initialise earth field from tables
stateStruct.earth_magfield = table_earth_field_ga;
}
}
return;
}

// limit update rate to avoid overflowing the FIFO buffer
if (gps.last_message_time_ms(selected_gps) - lastTimeGpsReceived_ms <= frontend->sensorIntervalMin_ms) {
return;
Expand Down

0 comments on commit 3a6362d

Please sign in to comment.