From 8b876e649761dd6799ee3708da75864571a625b9 Mon Sep 17 00:00:00 2001 From: Lorenz Meier <lm@inf.ethz.ch> Date: Sun, 10 Apr 2016 11:15:18 -0700 Subject: [PATCH] MAVLink command feedback: Do only report command status and not additional string --- src/modules/commander/commander.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/modules/commander/commander.cpp b/src/modules/commander/commander.cpp index 559549c717..26383f058c 100644 --- a/src/modules/commander/commander.cpp +++ b/src/modules/commander/commander.cpp @@ -3356,23 +3356,18 @@ void answer_command(struct vehicle_command_s &cmd, unsigned result, break; case vehicle_command_s::VEHICLE_CMD_RESULT_DENIED: - mavlink_log_critical(&mavlink_log_pub, "command denied: %u", cmd.command); tune_negative(true); break; case vehicle_command_s::VEHICLE_CMD_RESULT_FAILED: - mavlink_log_critical(&mavlink_log_pub, "command failed: %u", cmd.command); tune_negative(true); break; case vehicle_command_s::VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED: - /* this needs additional hints to the user - so let other messages pass and be spoken */ - mavlink_log_critical(&mavlink_log_pub, "command temporarily rejected: %u", cmd.command); tune_negative(true); break; case vehicle_command_s::VEHICLE_CMD_RESULT_UNSUPPORTED: - mavlink_log_critical(&mavlink_log_pub, "command unsupported: %u", cmd.command); tune_negative(true); break; -- GitLab