Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ArduCopter/mode_auto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,9 @@ bool ModeAuto::verify_nav_wp(const AP_Mission::Mission_Command& cmd)
// play a tone
AP_Notify::events.waypoint_complete = 1;
}
#if 0 // enable to send reached commands
gcs().send_text(MAV_SEVERITY_INFO, "Reached command #%i",cmd.index);
#endif
return true;
}
return false;
Expand Down
2 changes: 2 additions & 0 deletions libraries/AP_Mission/AP_Mission.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,9 @@ bool AP_Mission::start_command(const Mission_Command& cmd)
break;

default:
#if 0 // enable to send mission commands
GCS_SEND_TEXT(MAV_SEVERITY_INFO, "Mission: %u %s", cmd.index, cmd.type());
#endif
break;

}
Expand Down