QGCSerialPortInfo.h 3.29 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

10

11 12
#ifndef QGCSerialPortInfo_H
#define QGCSerialPortInfo_H
13

14 15 16 17 18 19 20 21 22
#ifdef __android__
    #include "qserialportinfo.h"
#else
    #include <QSerialPortInfo>
#endif

#include "QGCLoggingCategory.h"

Q_DECLARE_LOGGING_CATEGORY(QGCSerialPortInfoLog)
23

24 25 26 27
/// QGC's version of Qt QSerialPortInfo. It provides additional information about board types
/// that QGC cares about.
class QGCSerialPortInfo : public QSerialPortInfo
{
28
public:
29 30 31
    typedef enum {
        BoardTypePX4FMUV1,
        BoardTypePX4FMUV2,
32
        BoardTypePX4FMUV4,
33
        BoardTypePX4Flow,
Don Gagne's avatar
Don Gagne committed
34
        BoardTypeSikRadio,
35
        BoardTypeAeroCore,
36
        BoardTypeRTKGPS,
Henry Zhang's avatar
Henry Zhang committed
37
        BoardTypeMINDPXFMUV2,
38 39
        BoardTypeTAPV1,
        BoardTypeASCV1,
40 41 42 43 44
        BoardTypeUnknown
    } BoardType_t;

    // Vendor and products ids for the boards we care about

Don Gagne's avatar
Don Gagne committed
45
    static const int px4VendorId =                          9900;   ///< Vendor ID for Pixhawk board (V2 and V1) and PX4 Flow
46

47
    static const int pixhawkFMUV4ProductId =                18;     ///< Product ID for Pixhawk V2 board
Don Gagne's avatar
Don Gagne committed
48 49 50
    static const int pixhawkFMUV2ProductId =                17;     ///< Product ID for Pixhawk V2 board
    static const int pixhawkFMUV2OldBootloaderProductId =   22;     ///< Product ID for Bootloader on older Pixhawk V2 boards
    static const int pixhawkFMUV1ProductId =                16;     ///< Product ID for PX4 FMU V1 board
51

Don Gagne's avatar
Don Gagne committed
52
    static const int AeroCoreProductId =                    4097;   ///< Product ID for the AeroCore board
53
    
Don Gagne's avatar
Don Gagne committed
54
    static const int px4FlowProductId =                     21;     ///< Product ID for PX4 Flow board
55

Henry Zhang's avatar
Henry Zhang committed
56
    static const int MindPXFMUV2ProductId =                 48;     ///< Product ID for the MindPX V2 board
57 58
    static const int TAPV1ProductId =                       64;     ///< Product ID for the TAP V1 board
    static const int ASCV1ProductId =                       65;     ///< Product ID for the ASC V1 board
Henry Zhang's avatar
Henry Zhang committed
59

Don Gagne's avatar
Don Gagne committed
60 61
    static const int threeDRRadioVendorId =                 1027;   ///< Vendor ID for 3DR Radio
    static const int threeDRRadioProductId =                24597;  ///< Product ID for 3DR Radio
62

Don Gagne's avatar
Don Gagne committed
63 64 65
    static const int siLabsRadioVendorId =                  0x10c4; ///< Vendor ID for SILabs Radio
    static const int siLabsRadioProductId =                 0xea60; ///< Product ID for SILabs Radio

66 67 68
    static const int ubloxRTKVendorId =                     5446;   ///< Vendor ID for ublox RTK
    static const int ubloxRTKProductId =                    424;    ///< Product ID for ublox RTK

Don Gagne's avatar
Don Gagne committed
69
    QGCSerialPortInfo(void);
70 71 72 73 74 75 76
    QGCSerialPortInfo(const QSerialPort & port);

    /// Override of QSerialPortInfo::availablePorts
    static QList<QGCSerialPortInfo> availablePorts(void);

    BoardType_t boardType(void) const;

77 78 79
    /// @return true: we can flash this board type
    bool canFlash(void);

80 81 82 83 84 85
    /// @return true: board is a Pixhawk board
    bool boardTypePixhawk(void) const;

    /// @return true: Board is currently in bootloader
    bool isBootloader(void) const;

Don Gagne's avatar
Don Gagne committed
86
private:
87 88
};

Don Gagne's avatar
Don Gagne committed
89
#endif