GPSProvider.h 2.41 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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

#pragma once

#include <QString>
#include <QThread>
#include <QByteArray>
#include <QSerialPort>

#include <atomic>

#include "GPSPositionMessage.h"
#include "Drivers/src/gps_helper.h"


/**
 ** class GPSProvider
 * opens a GPS device and handles the protocol
 */
class GPSProvider : public QThread
{
    Q_OBJECT
public:
32 33 34

    enum class GPSType {
        u_blox,
35 36
        trimble,
        septentrio
37 38
    };

39 40 41 42 43 44 45 46 47 48 49
    GPSProvider(const QString& device,
                GPSType type,
                bool    enableSatInfo,
                double  surveyInAccMeters,
                int     surveryInDurationSecs,
                bool    useFixedBaseLocation,
                double  fixedBaseLatitude,
                double  fixedBaseLongitude,
                float   fixedBaseAltitudeMeters,
                float   fixedBaseAccuracyMeters,
                const std::atomic_bool& requestStop);
50 51 52 53 54 55
    ~GPSProvider();

    /**
     * this is called by the callback method
     */
    void gotRTCMData(uint8_t *data, size_t len);
56

57 58 59 60
signals:
    void positionUpdate(GPSPositionMessage message);
    void satelliteInfoUpdate(GPSSatelliteMessage message);
    void RTCMDataUpdate(QByteArray message);
61
    void surveyInStatus(float duration, float accuracyMM, double latitude, double longitude, float altitude, bool valid, bool active);
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

protected:
    void run();

private:
    void publishGPSPosition();
    void publishGPSSatellite();

	/**
	 * callback from the driver for the platform specific stuff
	 */
	static int callbackEntry(GPSCallbackType type, void *data1, int data2, void *user);

	int callback(GPSCallbackType type, void *data1, int data2);

    QString _device;
78
    GPSType _type;
79
    const std::atomic_bool& _requestStop;
Don Gagne's avatar
Don Gagne committed
80 81
    double  _surveyInAccMeters;
    int     _surveryInDurationSecs;
82 83 84 85 86
    bool    _useFixedBaseLoction;
    double  _fixedBaseLatitude;
    double  _fixedBaseLongitude;
    float   _fixedBaseAltitudeMeters;
    float   _fixedBaseAccuracyMeters;
87 88 89 90 91 92

	struct vehicle_gps_position_s	_reportGpsPos;
	struct satellite_info_s		*_pReportSatInfo = nullptr;

	QSerialPort *_serial = nullptr;
};