Browse Source

AP_Vehicle: report thread name in watchdog mavlink msg

zr-v5.1
Andrew Tridgell 5 years ago
parent
commit
77b8f88289
  1. 5
      libraries/AP_Vehicle/AP_Vehicle.cpp

5
libraries/AP_Vehicle/AP_Vehicle.cpp

@ -178,7 +178,7 @@ void AP_Vehicle::send_watchdog_reset_statustext() @@ -178,7 +178,7 @@ void AP_Vehicle::send_watchdog_reset_statustext()
}
const AP_HAL::Util::PersistentData &pd = hal.util->last_persistent_data;
gcs().send_text(MAV_SEVERITY_CRITICAL,
"WDG: T%d SL%u FL%u FT%u FA%x FTP%u FLR%x FICSR%u MM%u MC%u IE%u IEC%u",
"WDG: T%d SL%u FL%u FT%u FA%x FTP%u FLR%x FICSR%u MM%u MC%u IE%u IEC%u TN:%.4s",
pd.scheduler_task,
pd.semaphore_line,
pd.fault_line,
@ -190,7 +190,8 @@ void AP_Vehicle::send_watchdog_reset_statustext() @@ -190,7 +190,8 @@ void AP_Vehicle::send_watchdog_reset_statustext()
pd.last_mavlink_msgid,
pd.last_mavlink_cmd,
(unsigned)pd.internal_errors,
(unsigned)pd.internal_error_count
(unsigned)pd.internal_error_count,
pd.thread_name4
);
}

Loading…
Cancel
Save