1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

LP-567 telemetry: fix typo in comments

This commit is contained in:
Philippe Renon 2018-03-17 14:53:32 +01:00
parent 5c746fb28a
commit 3f7dcab185

View File

@ -79,7 +79,7 @@ Telemetry::~Telemetry()
closeAllTransactions();
foreach(QList<UAVObject *> instances, objMngr->getObjects()) {
foreach(UAVObject * object, instances) {
// make sure we 'forget' all objects before we request it from the flight side
// 'forget' all objects
object->setIsKnown(false);
}
}
@ -244,9 +244,8 @@ void Telemetry::transactionCompleted(UAVObject *obj, bool success)
if (transInfo) {
if (success) {
// We now know tat the flight side knows of this object.
// We now know that the flight side knows of this object.
obj->setIsKnown(true);
#ifdef VERBOSE_TELEMETRY
qDebug() << "Telemetry - transaction successful for object" << obj->toStringBrief();
#endif