MAVLinkProtocol.h 6.83 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


/**
 * @file
pixhawk's avatar
pixhawk committed
13 14
 *   @brief Definition of class MAVLinkProtocol
 *   @author Lorenz Meier <mail@qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
15 16 17 18 19 20 21 22 23
 */

#ifndef MAVLINKPROTOCOL_H_
#define MAVLINKPROTOCOL_H_

#include <QObject>
#include <QMutex>
#include <QString>
#include <QTimer>
lm's avatar
lm committed
24
#include <QFile>
lm's avatar
lm committed
25
#include <QMap>
pixhawk's avatar
pixhawk committed
26
#include <QByteArray>
27
#include <QLoggingCategory>
Don Gagne's avatar
Don Gagne committed
28

pixhawk's avatar
pixhawk committed
29
#include "LinkInterface.h"
pixhawk's avatar
pixhawk committed
30
#include "QGCMAVLink.h"
31
#include "QGC.h"
32
#include "QGCTemporaryFile.h"
33
#include "QGCToolbox.h"
pixhawk's avatar
pixhawk committed
34

35
class LinkManager;
36 37
class MultiVehicleManager;
class QGCApplication;
38

39 40
Q_DECLARE_LOGGING_CATEGORY(MAVLinkProtocolLog)

pixhawk's avatar
pixhawk committed
41
/**
pixhawk's avatar
pixhawk committed
42
 * @brief MAVLink micro air vehicle protocol reference implementation.
pixhawk's avatar
pixhawk committed
43
 *
pixhawk's avatar
pixhawk committed
44 45 46
 * 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
47
 **/
48
class MAVLinkProtocol : public QGCTool
49
{
pixhawk's avatar
pixhawk committed
50 51
    Q_OBJECT

52
public:
53 54 55
    MAVLinkProtocol(QGCApplication* app);
    ~MAVLinkProtocol();

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

100 101 102
    // Override from QGCTool
    virtual void setToolbox(QGCToolbox *toolbox);

pixhawk's avatar
pixhawk committed
103 104
public slots:
    /** @brief Receive bytes from a communication interface */
105
    void receiveBytes(LinkInterface* link, QByteArray b);
106
    
107 108
    /** @brief Set the system id of this application */
    void setSystemId(int id);
pixhawk's avatar
pixhawk committed
109

lm's avatar
lm committed
110 111 112
    /** @brief Enable / disable version check */
    void enableVersionCheck(bool enabled);

113 114 115 116
    /** @brief Load protocol settings */
    void loadSettings();
    /** @brief Store protocol settings */
    void storeSettings();
Don Gagne's avatar
Don Gagne committed
117
    
Don Gagne's avatar
Don Gagne committed
118
#ifndef __mobile__
119 120
    /// @brief Deletes any log files which are in the temp directory
    static void deleteTempLogFiles(void);
121 122 123
    
    /// Checks for lost log files
    void checkForLostLogFiles(void);
Don Gagne's avatar
Don Gagne committed
124
#endif
Don Gagne's avatar
Don Gagne committed
125

126
protected:
lm's avatar
lm committed
127
    bool m_enable_version_check; ///< Enable checking of version match of MAV and QGC
128 129 130 131 132 133 134
    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 %.
135
    bool versionMismatchIgnore;
136
    int systemId;
137

pixhawk's avatar
pixhawk committed
138
signals:
Don Gagne's avatar
Don Gagne committed
139 140 141
    /// Heartbeat received on link
    void vehicleHeartbeatInfo(LinkInterface* link, int vehicleId, int vehicleMavlinkVersion, int vehicleFirmwareType, int vehicleType);

pixhawk's avatar
pixhawk committed
142 143
    /** @brief Message received and directly copied via signal */
    void messageReceived(LinkInterface* link, mavlink_message_t message);
lm's avatar
lm committed
144 145
    /** @brief Emitted if version check is enabled / disabled */
    void versionCheckChanged(bool enabled);
146 147
    /** @brief Emitted if a message from the protocol should reach the user */
    void protocolStatusMessage(const QString& title, const QString& message);
148 149
    /** @brief Emitted if a new system ID was set */
    void systemIdChanged(int systemId);
150 151 152

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

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

private slots:
    void _vehicleCountChanged(int count);
Don Gagne's avatar
Don Gagne committed
173 174
    
private:
Don Gagne's avatar
Don Gagne committed
175
#ifndef __mobile__
Don Gagne's avatar
Don Gagne committed
176 177 178
    bool _closeLogFile(void);
    void _startLogging(void);
    void _stopLogging(void);
Don Gagne's avatar
Don Gagne committed
179

Don Gagne's avatar
Don Gagne committed
180 181
    bool _logSuspendError;      ///< true: Logging suspended due to error
    bool _logSuspendReplay;     ///< true: Logging suspended due to replay
182
    bool _logPromptForSave;     ///< true: Prompt for log save when appropriate
Don Gagne's avatar
Don Gagne committed
183

184 185 186
    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
187
#endif
Don Gagne's avatar
Don Gagne committed
188

189 190
    LinkManager*            _linkMgr;
    MultiVehicleManager*    _multiVehicleManager;
pixhawk's avatar
pixhawk committed
191 192 193
};

#endif // MAVLINKPROTOCOL_H_