1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

OP-1122 OP-1125 uavtalk - fixed minor typos

This commit is contained in:
Philippe Renon 2013-11-29 09:23:27 +01:00
parent 1a25e87fde
commit cb902900de

View File

@ -264,7 +264,7 @@ bool UAVTalk::processInputByte(quint8 rxbyte)
case STATE_SYNC:
if (rxbyte != SYNC_VAL) {
// continue until synch byte is matched
// continue until sync byte is matched
UAVTALK_QXTLOG_DEBUG("UAVTalk: Sync->Sync (" + QString::number(rxbyte) + " " + QString("0x%1").arg(rxbyte, 2, 16) + ")");
break;
}
@ -735,7 +735,7 @@ bool UAVTalk::transmitSingleObject(quint8 type, quint32 objId, quint16 instId, U
qint32 length;
qint32 dataOffset;
#ifdef VERBOSE_UAVTALK
#ifdef VERBOSE_UAVTALK
qDebug() << "UAVTalk - transmitting object" << objId << instId << (obj != NULL ? obj->toStringBrief() : "<null object>");
#endif