mirror of https://github.com/ArduPilot/ardupilot
AP_Torqeedo: error code reporting fix
This commit is contained in:
parent
10b0e3e419
commit
2147401c7d
|
@ -350,7 +350,7 @@ void AP_Torqeedo::report_error_codes()
|
|||
if (_display_system_state.flags.temp_warning) {
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL, "%s high temp", msg_prefix);
|
||||
}
|
||||
if (_display_system_state.flags.temp_warning) {
|
||||
if (_display_system_state.flags.batt_nearly_empty) {
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL, "%s batt nearly empty", msg_prefix);
|
||||
}
|
||||
if (_display_system_state.master_error_code > 0) {
|
||||
|
|
Loading…
Reference in New Issue