mirror of https://github.com/ArduPilot/ardupilot
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:
parent
eb9e65fd28
commit
3dfaa5f021
|
@ -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…
Reference in New Issue