MAVLinkDecoder.h 1.7 KB
Newer Older
lm's avatar
lm committed
1 2 3 4 5 6
#ifndef MAVLINKDECODER_H
#define MAVLINKDECODER_H

#include <QObject>
#include "MAVLinkProtocol.h"

7
class MAVLinkDecoder : public QThread
lm's avatar
lm committed
8 9 10 11 12
{
    Q_OBJECT
public:
    MAVLinkDecoder(MAVLinkProtocol* protocol, QObject *parent = 0);

13 14
    void run();

lm's avatar
lm committed
15 16
signals:
    void textMessageReceived(int uasid, int componentid, int severity, const QString& text);
17
    void valueChanged(const int uasId, const QString& name, const QString& unit, const QVariant& value, const quint64 msec);
lm's avatar
lm committed
18 19 20 21 22 23 24

public slots:
    /** @brief Receive one message from the protocol and decode it */
    void receiveMessage(LinkInterface* link,mavlink_message_t message);
protected:
    /** @brief Emit the value of one message field */
    void emitFieldValue(mavlink_message_t* msg, int fieldid, quint64 time);
pixhawk's avatar
pixhawk committed
25 26
    /** @brief Shift a timestamp in Unix time if necessary */
    quint64 getUnixTimeFromMs(int systemID, quint64 time);
lm's avatar
lm committed
27 28

    mavlink_message_t receivedMessages[256]; ///< Available / known messages
29 30
    mavlink_message_info_t messageInfo[256]; ///< Message information
    QMap<uint16_t, bool> messageFilter;               ///< Message/field names not to emit
31
    QMap<uint16_t, bool> textMessageFilter;           ///< Message/field names not to emit in text mode
32 33
    int componentID[256];                             ///< Multi component detection
    bool componentMulti[256];                         ///< Multi components detected
pixhawk's avatar
pixhawk committed
34 35 36
    quint64 onboardTimeOffset[256];                   ///< Offset of onboard time from Unix epoch (of the receiving GCS)
    qint64 onboardToGCSUnixTimeOffsetAndDelay[256];   ///< Offset of onboard time and GCS Unix time
    quint64 firstOnboardTime[256];                    ///< First seen onboard time
lm's avatar
lm committed
37 38 39 40

};

#endif // MAVLINKDECODER_H