Browse Source

Arduplane: simply invalid cmd msg

master
Pierre Kancir 8 years ago committed by Tom Pittenger
parent
commit
64a2fca812
  1. 6
      ArduPlane/commands_logic.cpp

6
ArduPlane/commands_logic.cpp

@ -322,11 +322,7 @@ bool Plane::verify_command(const AP_Mission::Mission_Command& cmd) // Ret @@ -322,11 +322,7 @@ bool Plane::verify_command(const AP_Mission::Mission_Command& cmd) // Ret
default:
// error message
if (AP_Mission::is_nav_cmd(cmd)) {
gcs_send_text(MAV_SEVERITY_WARNING,"Verify nav. Invalid or no current nav cmd");
}else{
gcs_send_text(MAV_SEVERITY_WARNING,"Verify condition. Invalid or no current condition cmd");
}
gcs_send_text_fmt(MAV_SEVERITY_WARNING,"Skipping invalid cmd #%i",cmd.id);
// return true if we do not recognize the command so that we move on to the next command
return true;
}

Loading…
Cancel
Save