mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-05 21:23:58 -04:00
AntennaTracker: rename MSG_RADIO_OUT to MSG_SERVO_OUTPUT_RAW to better describe what it is
This commit is contained in:
parent
7f5ef7cf3a
commit
5012b2e899
@ -190,7 +190,7 @@ bool GCS_MAVLINK_Tracker::try_send_message(enum ap_message id)
|
|||||||
send_radio_in(0);
|
send_radio_in(0);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MSG_RADIO_OUT:
|
case MSG_SERVO_OUTPUT_RAW:
|
||||||
CHECK_PAYLOAD_SIZE(SERVO_OUTPUT_RAW);
|
CHECK_PAYLOAD_SIZE(SERVO_OUTPUT_RAW);
|
||||||
send_servo_output_raw(false);
|
send_servo_output_raw(false);
|
||||||
break;
|
break;
|
||||||
@ -404,7 +404,7 @@ GCS_MAVLINK_Tracker::data_stream_send(void)
|
|||||||
|
|
||||||
if (stream_trigger(STREAM_RC_CHANNELS)) {
|
if (stream_trigger(STREAM_RC_CHANNELS)) {
|
||||||
send_message(MSG_RADIO_IN);
|
send_message(MSG_RADIO_IN);
|
||||||
send_message(MSG_RADIO_OUT);
|
send_message(MSG_SERVO_OUTPUT_RAW);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stream_trigger(STREAM_EXTRA1)) {
|
if (stream_trigger(STREAM_EXTRA1)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user