AP_Torqeedo: error code reporting fix

This commit is contained in:
Randy Mackay 2023-12-04 16:00:00 +09:00
parent 86a86d8589
commit 1eecaa3f9f
1 changed files with 1 additions and 1 deletions

View File

@ -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) {