|
|
|
@ -57,10 +57,20 @@ public slots:
@@ -57,10 +57,20 @@ public slots:
|
|
|
|
|
|
|
|
|
|
void updateBattery(UASInterface* uas, double voltage, double percent, int seconds); |
|
|
|
|
void updateCPULoad(UASInterface* uas, double load); |
|
|
|
|
/** @brief Set the loss rate of packets received by the MAV */ |
|
|
|
|
/**
|
|
|
|
|
* @brief Set the loss rate of packets received by the MAV. |
|
|
|
|
* @param uasId UNUSED |
|
|
|
|
* @param receiveLoss A percentage value (0-100) of how many message the UAS has failed to receive. |
|
|
|
|
*/ |
|
|
|
|
void updateReceiveLoss(int uasId, float receiveLoss); |
|
|
|
|
/** @brief Set the loss rate of packets sent from the MAV */ |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Set the loss rate of packets sent from the MAV
|
|
|
|
|
* @param uasId UNUSED |
|
|
|
|
* @param sendLoss A percentage value (0-100) of how many message QGC has failed to receive. |
|
|
|
|
*/ |
|
|
|
|
void updateSendLoss(int uasId, float sendLoss); |
|
|
|
|
|
|
|
|
|
/** @brief Update the error count */ |
|
|
|
|
void updateErrorCount(int uasid, QString component, QString device, int count); |
|
|
|
|
|
|
|
|
|