Browse Source

Sub: Changed the MAV_SEVERITY of the motor test timed out message to INFO so that it wont be read out loud everytime the user ends the motor test

master
Justin 6 years ago committed by Jacob Walser
parent
commit
3dfaa5f021
  1. 2
      ArduSub/motors.cpp

2
ArduSub/motors.cpp

@ -60,7 +60,7 @@ bool Sub::verify_motor_test() @@ -60,7 +60,7 @@ bool Sub::verify_motor_test()
// Require at least 2 Hz incoming do_set_motor requests
if (AP_HAL::millis() > last_do_motor_test_ms + 500) {
gcs().send_text(MAV_SEVERITY_WARNING, "Motor test timed out!");
gcs().send_text(MAV_SEVERITY_INFO, "Motor test timed out!");
pass = false;
}

Loading…
Cancel
Save