MAVLinkProtocol.h 6.85 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
pixhawk's avatar
pixhawk committed
9 10 11 12 13 14 15 16

#ifndef MAVLINKPROTOCOL_H_
#define MAVLINKPROTOCOL_H_

#include <QObject>
#include <QMutex>
#include <QString>
#include <QTimer>
lm's avatar
lm committed
17
#include <QFile>
lm's avatar
lm committed
18
#include <QMap>
pixhawk's avatar
pixhawk committed
19
#include <QByteArray>
20
#include <QLoggingCategory>
Don Gagne's avatar
Don Gagne committed
21

pixhawk's avatar
pixhawk committed
22
#include "LinkInterface.h"
pixhawk's avatar
pixhawk committed
23
#include "QGCMAVLink.h"
24
#include "QGC.h"
25
#include "QGCTemporaryFile.h"
26
#include "QGCToolbox.h"
pixhawk's avatar
pixhawk committed
27

28
class LinkManager;
29 30
class MultiVehicleManager;
class QGCApplication;
Gus Grubba's avatar
Gus Grubba committed
31
class AppSettings;
32

33 34
Q_DECLARE_LOGGING_CATEGORY(MAVLinkProtocolLog)

pixhawk's avatar
pixhawk committed
35
/**
pixhawk's avatar
pixhawk committed
36
 * @brief MAVLink micro air vehicle protocol reference implementation.
pixhawk's avatar
pixhawk committed
37
 *
pixhawk's avatar
pixhawk committed
38 39 40
 * MAVLink is a generic communication protocol for micro air vehicles.
 * for more information, please see the official website.
 * @ref http://pixhawk.ethz.ch/software/mavlink/
pixhawk's avatar
pixhawk committed
41
 **/
42
class MAVLinkProtocol : public QGCTool
43
{
pixhawk's avatar
pixhawk committed
44 45
    Q_OBJECT

46
public:
47
    MAVLinkProtocol(QGCApplication* app, QGCToolbox* toolbox);
48 49
    ~MAVLinkProtocol();

pixhawk's avatar
pixhawk committed
50 51
    /** @brief Get the human-friendly name of this protocol */
    QString getName();
52 53 54 55
    /** @brief Get the system id of this application */
    int getSystemId();
    /** @brief Get the component id of this application */
    int getComponentId();
Don Gagne's avatar
Don Gagne committed
56
    
lm's avatar
lm committed
57
    /** @brief Get protocol version check state */
58 59 60
    bool versionCheckEnabled() const {
        return m_enable_version_check;
    }
61
    /** @brief Get the protocol version */
62 63 64
    int getVersion() {
        return MAVLINK_VERSION;
    }
65 66 67 68
    /**
     * Retrieve a total of all successfully parsed packets for the specified link.
     * @returns -1 if this is not available for this protocol, # of packets otherwise.
     */
69
    qint32 getReceivedPacketCount(const LinkInterface *link) const {
70
        return totalReceiveCounter[link->mavlinkChannel()];
71 72 73 74 75
    }
    /**
     * Retrieve a total of all parsing errors for the specified link.
     * @returns -1 if this is not available for this protocol, # of errors otherwise.
     */
76
    qint32 getParsingErrorCount(const LinkInterface *link) const {
77
        return totalErrorCounter[link->mavlinkChannel()];
78 79 80 81 82
    }
    /**
     * Retrieve a total of all dropped packets for the specified link.
     * @returns -1 if this is not available for this protocol, # of packets otherwise.
     */
83
    qint32 getDroppedPacketCount(const LinkInterface *link) const {
84
        return totalLossCounter[link->mavlinkChannel()];
85
    }
86 87 88 89
    /**
     * Reset the counters for all metadata for this link.
     */
    virtual void resetMetadataForLink(const LinkInterface *link);
Don Gagne's avatar
Don Gagne committed
90
    
91 92
    /// Suspend/Restart logging during replay.
    void suspendLogForReplay(bool suspend);
Lorenz Meier's avatar
Lorenz Meier committed
93

94 95 96
    // Override from QGCTool
    virtual void setToolbox(QGCToolbox *toolbox);

pixhawk's avatar
pixhawk committed
97 98
public slots:
    /** @brief Receive bytes from a communication interface */
99
    void receiveBytes(LinkInterface* link, QByteArray b);
100
    
101 102
    /** @brief Set the system id of this application */
    void setSystemId(int id);
pixhawk's avatar
pixhawk committed
103

lm's avatar
lm committed
104 105 106
    /** @brief Enable / disable version check */
    void enableVersionCheck(bool enabled);

107 108 109 110
    /** @brief Load protocol settings */
    void loadSettings();
    /** @brief Store protocol settings */
    void storeSettings();
Don Gagne's avatar
Don Gagne committed
111
    
112 113
    /// @brief Deletes any log files which are in the temp directory
    static void deleteTempLogFiles(void);
114 115 116
    
    /// Checks for lost log files
    void checkForLostLogFiles(void);
Don Gagne's avatar
Don Gagne committed
117

118
protected:
lm's avatar
lm committed
119
    bool m_enable_version_check; ///< Enable checking of version match of MAV and QGC
120 121 122 123 124 125 126
    QMutex receiveMutex;        ///< Mutex to protect receiveBytes function
    int lastIndex[256][256];    ///< Store the last received sequence ID for each system/componenet pair
    int totalReceiveCounter[MAVLINK_COMM_NUM_BUFFERS];    ///< The total number of successfully received messages
    int totalLossCounter[MAVLINK_COMM_NUM_BUFFERS];       ///< Total messages lost during transmission.
    int totalErrorCounter[MAVLINK_COMM_NUM_BUFFERS];      ///< Total count of all parsing errors. Generally <= totalLossCounter.
    int currReceiveCounter[MAVLINK_COMM_NUM_BUFFERS];     ///< Received messages during this sample time window. Used for calculating loss %.
    int currLossCounter[MAVLINK_COMM_NUM_BUFFERS];        ///< Lost messages during this sample time window. Used for calculating loss %.
127
    bool versionMismatchIgnore;
128
    int systemId;
129

pixhawk's avatar
pixhawk committed
130
signals:
Don Gagne's avatar
Don Gagne committed
131
    /// Heartbeat received on link
132
    void vehicleHeartbeatInfo(LinkInterface* link, int vehicleId, int componentId, int vehicleMavlinkVersion, int vehicleFirmwareType, int vehicleType);
Don Gagne's avatar
Don Gagne committed
133

pixhawk's avatar
pixhawk committed
134 135
    /** @brief Message received and directly copied via signal */
    void messageReceived(LinkInterface* link, mavlink_message_t message);
lm's avatar
lm committed
136 137
    /** @brief Emitted if version check is enabled / disabled */
    void versionCheckChanged(bool enabled);
138 139
    /** @brief Emitted if a message from the protocol should reach the user */
    void protocolStatusMessage(const QString& title, const QString& message);
140 141
    /** @brief Emitted if a new system ID was set */
    void systemIdChanged(int systemId);
142 143 144

    void receiveLossPercentChanged(int uasId, float lossPercent);
    void receiveLossTotalChanged(int uasId, int totalLoss);
145

146 147 148 149 150
    /**
     * @brief Emitted if a new radio status packet received
     *
     * @param rxerrors receive errors
     * @param fixed count of error corrected packets
151 152
     * @param rssi local signal strength in dBm
     * @param remrssi remote signal strength in dBm
153 154 155 156
     * @param txbuf how full the tx buffer is as a percentage
     * @param noise background noise level
     * @param remnoise remote background noise level
     */
157
    void radioStatusChanged(LinkInterface* link, unsigned rxerrors, unsigned fixed, int rssi, int remrssi,
158
    unsigned txbuf, unsigned noise, unsigned remnoise);
Don Gagne's avatar
Don Gagne committed
159
    
160 161 162 163 164
    /// Emitted when a temporary telemetry log file is ready for saving
    void saveTelemetryLog(QString tempLogfile);

    /// Emitted when a telemetry log is started to save.
    void checkTelemetrySavePath(void);
165 166

private slots:
167
    void _vehicleCountChanged(void);
Don Gagne's avatar
Don Gagne committed
168 169 170 171 172
    
private:
    bool _closeLogFile(void);
    void _startLogging(void);
    void _stopLogging(void);
Don Gagne's avatar
Don Gagne committed
173

Don Gagne's avatar
Don Gagne committed
174 175
    bool _logSuspendError;      ///< true: Logging suspended due to error
    bool _logSuspendReplay;     ///< true: Logging suspended due to replay
176
    bool _vehicleWasArmed;      ///< true: Vehicle was armed during log sequence
Don Gagne's avatar
Don Gagne committed
177

178 179 180
    QGCTemporaryFile    _tempLogFile;            ///< File to log to
    static const char*  _tempLogFileTemplate;    ///< Template for temporary log file
    static const char*  _logFileExtension;       ///< Extension for log files
Don Gagne's avatar
Don Gagne committed
181

182 183
    LinkManager*            _linkMgr;
    MultiVehicleManager*    _multiVehicleManager;
Gus Grubba's avatar
Gus Grubba committed
184
    AppSettings*            _appSettings;
pixhawk's avatar
pixhawk committed
185 186 187
};

#endif // MAVLINKPROTOCOL_H_