QGCNMEAProtocol.cc 344 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * The bytes are copied by calling the LinkInterface::readBytes() method.
 * This method parses all incoming bytes and decodes GPS positions.
 * @param link The interface to read from
 * @see LinkInterface
 **/
void QGCNMEAProtocol::receiveBytes(LinkInterface* link, QByteArray b)
{
    receiveMutex.lock();



    receiveMutex.unlock();
}