Skip to content

Commit

Permalink
Tracker: use handle_common_message()
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Nov 9, 2016
1 parent 8417958 commit 90c4214
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions AntennaTracker/GCS_Mavlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,12 +533,6 @@ void GCS_MAVLINK_Tracker::handleMessage(mavlink_message_t* msg)
break;
}

case MAVLINK_MSG_ID_PARAM_REQUEST_READ:
{
handle_param_request_read(msg);
break;
}

case MAVLINK_MSG_ID_PARAM_SET:
{
handle_param_set(msg, nullptr);
Expand Down Expand Up @@ -870,8 +864,8 @@ void GCS_MAVLINK_Tracker::handleMessage(mavlink_message_t* msg)
send_autopilot_version(FIRMWARE_VERSION);
break;

case MAVLINK_MSG_ID_SETUP_SIGNING:
handle_setup_signing(msg);
default:
handle_common_message(msg);
break;
} // end switch
} // end handle mavlink
Expand Down

0 comments on commit 90c4214

Please sign in to comment.