Plane: move ADSB mavlink handling from vehicles to common library

This commit is contained in:
Tom Pittenger 2021-10-12 16:26:18 -07:00 committed by Tom Pittenger
parent e7c31dab9c
commit c450145fd5
1 changed files with 0 additions and 9 deletions

View File

@ -1290,15 +1290,6 @@ void GCS_MAVLINK_Plane::handleMessage(const mavlink_message_t &msg)
break;
}
case MAVLINK_MSG_ID_ADSB_VEHICLE:
case MAVLINK_MSG_ID_UAVIONIX_ADSB_OUT_CFG:
case MAVLINK_MSG_ID_UAVIONIX_ADSB_OUT_DYNAMIC:
case MAVLINK_MSG_ID_UAVIONIX_ADSB_TRANSCEIVER_HEALTH_REPORT:
#if HAL_ADSB_ENABLED
plane.adsb.handle_message(chan, msg);
#endif
break;
default:
handle_common_message(msg);
break;