mirror of https://github.com/ArduPilot/ardupilot
Plane: move sending of AOA_SSA message to GCS namespace
This commit is contained in:
parent
3ded030fa8
commit
e75fa6fb15
|
@ -140,8 +140,10 @@ void GCS_MAVLINK_Plane::send_attitude() const
|
||||||
omega.z);
|
omega.z);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Plane::send_aoa_ssa(mavlink_channel_t chan)
|
void GCS_MAVLINK_Plane::send_aoa_ssa()
|
||||||
{
|
{
|
||||||
|
AP_AHRS &ahrs = AP::ahrs();
|
||||||
|
|
||||||
mavlink_msg_aoa_ssa_send(
|
mavlink_msg_aoa_ssa_send(
|
||||||
chan,
|
chan,
|
||||||
micros(),
|
micros(),
|
||||||
|
@ -438,7 +440,7 @@ bool GCS_MAVLINK_Plane::try_send_message(enum ap_message id)
|
||||||
|
|
||||||
case MSG_AOA_SSA:
|
case MSG_AOA_SSA:
|
||||||
CHECK_PAYLOAD_SIZE(AOA_SSA);
|
CHECK_PAYLOAD_SIZE(AOA_SSA);
|
||||||
plane.send_aoa_ssa(chan);
|
send_aoa_ssa();
|
||||||
break;
|
break;
|
||||||
case MSG_LANDING:
|
case MSG_LANDING:
|
||||||
plane.landing.send_landing_message(chan);
|
plane.landing.send_landing_message(chan);
|
||||||
|
|
|
@ -28,6 +28,7 @@ protected:
|
||||||
|
|
||||||
virtual bool in_hil_mode() const override;
|
virtual bool in_hil_mode() const override;
|
||||||
|
|
||||||
|
void send_aoa_ssa();
|
||||||
void send_attitude() const override;
|
void send_attitude() const override;
|
||||||
void send_simstate() const override;
|
void send_simstate() const override;
|
||||||
|
|
||||||
|
|
|
@ -765,8 +765,6 @@ private:
|
||||||
void send_servo_out(mavlink_channel_t chan);
|
void send_servo_out(mavlink_channel_t chan);
|
||||||
void send_wind(mavlink_channel_t chan);
|
void send_wind(mavlink_channel_t chan);
|
||||||
|
|
||||||
void send_aoa_ssa(mavlink_channel_t chan);
|
|
||||||
|
|
||||||
void Log_Write_Fast(void);
|
void Log_Write_Fast(void);
|
||||||
void Log_Write_Attitude(void);
|
void Log_Write_Attitude(void);
|
||||||
void Log_Write_Performance();
|
void Log_Write_Performance();
|
||||||
|
|
Loading…
Reference in New Issue