Print Telemetry::Health all the time

This commit is contained in:
Tuomas Järvinen
2024-07-04 16:56:06 +03:00
parent 7e4c43dec9
commit c4af0cc461
+1 -1
View File
@@ -299,5 +299,5 @@ void AzDroneController::newHealthInfoSlot(Telemetry::Health health)
qDebug() << " Home position: " << (health.is_home_position_ok ? "ok" : "not ok"); qDebug() << " Home position: " << (health.is_home_position_ok ? "ok" : "not ok");
// Not optimal, but disconnect signal immeaditely after getting the first update. // Not optimal, but disconnect signal immeaditely after getting the first update.
disconnect(this, &AzDroneController::newHealthInfo, this, &AzDroneController::newHealthInfoSlot); // disconnect(this, &AzDroneController::newHealthInfo, this, &AzDroneController::newHealthInfoSlot);
} }