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

This commit is contained in:
Justin 2019-07-08 10:47:57 -07:00 committed by Jacob Walser
parent eb9e65fd28
commit 3dfaa5f021
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}