mirror of https://github.com/ArduPilot/ardupilot
Blimp: remove empty override method
This commit is contained in:
parent
2a0b103c2c
commit
3ced1b27aa
|
@ -430,12 +430,6 @@ MAV_RESULT GCS_MAVLINK_Blimp::handle_command_do_set_roi(const Location &roi_loc)
|
|||
return MAV_RESULT_ACCEPTED;
|
||||
}
|
||||
|
||||
MAV_RESULT GCS_MAVLINK_Blimp::handle_preflight_reboot(const mavlink_command_long_t &packet)
|
||||
{
|
||||
// call parent
|
||||
return GCS_MAVLINK::handle_preflight_reboot(packet);
|
||||
}
|
||||
|
||||
bool GCS_MAVLINK_Blimp::set_home_to_current_location(bool _lock)
|
||||
{
|
||||
return blimp.set_home_to_current_location(_lock);
|
||||
|
|
|
@ -26,7 +26,6 @@ protected:
|
|||
void send_position_target_global_int() override;
|
||||
|
||||
MAV_RESULT handle_command_do_set_roi(const Location &roi_loc) override;
|
||||
MAV_RESULT handle_preflight_reboot(const mavlink_command_long_t &packet) override;
|
||||
MAV_RESULT handle_command_mount(const mavlink_command_long_t &packet) override;
|
||||
MAV_RESULT handle_command_int_packet(const mavlink_command_int_t &packet) override;
|
||||
MAV_RESULT handle_command_long_packet(const mavlink_command_long_t &packet) override;
|
||||
|
|
Loading…
Reference in New Issue