mirror of https://github.com/ArduPilot/ardupilot
AntennaTracker: add build option to not send RC_CHANNELS_RAW
we keep this around in case we break old OSD setups
This commit is contained in:
parent
be377da6a4
commit
7d6aeb38e4
|
@ -289,7 +289,9 @@ static const ap_message STREAM_RAW_CONTROLLER_msgs[] = {
|
||||||
};
|
};
|
||||||
static const ap_message STREAM_RC_CHANNELS_msgs[] = {
|
static const ap_message STREAM_RC_CHANNELS_msgs[] = {
|
||||||
MSG_RC_CHANNELS,
|
MSG_RC_CHANNELS,
|
||||||
|
#if AP_MAVLINK_MSG_RC_CHANNELS_RAW_ENABLED
|
||||||
MSG_RC_CHANNELS_RAW, // only sent on a mavlink1 connection
|
MSG_RC_CHANNELS_RAW, // only sent on a mavlink1 connection
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
static const ap_message STREAM_EXTRA1_msgs[] = {
|
static const ap_message STREAM_EXTRA1_msgs[] = {
|
||||||
MSG_ATTITUDE,
|
MSG_ATTITUDE,
|
||||||
|
|
Loading…
Reference in New Issue