Blimp: remove empty override method

This commit is contained in:
Peter Barker 2022-09-14 10:29:02 +10:00 committed by Peter Barker
parent 2a0b103c2c
commit 3ced1b27aa
2 changed files with 0 additions and 7 deletions

View File

@ -430,12 +430,6 @@ MAV_RESULT GCS_MAVLINK_Blimp::handle_command_do_set_roi(const Location &roi_loc)
return MAV_RESULT_ACCEPTED; 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) bool GCS_MAVLINK_Blimp::set_home_to_current_location(bool _lock)
{ {
return blimp.set_home_to_current_location(_lock); return blimp.set_home_to_current_location(_lock);

View File

@ -26,7 +26,6 @@ protected:
void send_position_target_global_int() override; void send_position_target_global_int() override;
MAV_RESULT handle_command_do_set_roi(const Location &roi_loc) 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_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_int_packet(const mavlink_command_int_t &packet) override;
MAV_RESULT handle_command_long_packet(const mavlink_command_long_t &packet) override; MAV_RESULT handle_command_long_packet(const mavlink_command_long_t &packet) override;