Plane: enable NavEKF logging in plane

This commit is contained in:
Andrew Tridgell 2013-12-30 16:19:27 +11:00
parent b4153c4d32
commit 1fbae4dd44
3 changed files with 21 additions and 0 deletions

View File

@ -805,6 +805,7 @@ static void ahrs_update()
#endif
ahrs.update();
NavEKF.UpdateFilter();
if (should_log(MASK_LOG_ATTITUDE_FAST))
Log_Write_Attitude();

View File

@ -527,6 +527,22 @@ static void NOINLINE send_simstate(mavlink_channel_t chan)
#endif
}
// report NavEKF state
static void NOINLINE send_ekf(mavlink_channel_t chan)
{
Vector3f euler;
struct Location loc;
NavEKF.getEulerAngles(euler);
NavEKF.getLLH(loc);
mavlink_msg_ekf_send(chan,
euler.x,
euler.y,
euler.z,
loc.alt*1.0e-2f,
loc.lat,
loc.lng);
}
static void NOINLINE send_hwstatus(mavlink_channel_t chan)
{
mavlink_msg_hwstatus_send(
@ -726,6 +742,8 @@ static bool mavlink_try_send_message(mavlink_channel_t chan, enum ap_message id)
case MSG_SIMSTATE:
CHECK_PAYLOAD_SIZE(SIMSTATE);
send_simstate(chan);
CHECK_PAYLOAD_SIZE(EKF);
send_ekf(chan);
break;
case MSG_HWSTATUS:

View File

@ -240,6 +240,8 @@ static void init_home()
guided_WP = home;
guided_WP.alt += g.RTL_altitude_cm;
// startup EKF now we have home
NavEKF.InitialiseFilter();
}
/*