MavlinkConsoleController.h 1.35 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/****************************************************************************
 *
 *   (c) 2009-2017 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.
 *
 ****************************************************************************/

#pragma once

#include "QmlObjectListModel.h"
#include "Fact.h"
#include "FactMetaData.h"
#include <QObject>
#include <QString>
#include <QMetaObject>
18
#include <QStringListModel>
19 20 21 22 23

// Fordward decls
class Vehicle;

/// Controller for MavlinkConsole.qml.
24
class MavlinkConsoleController : public QStringListModel
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
{
    Q_OBJECT

public:
    MavlinkConsoleController();
    ~MavlinkConsoleController();

public slots:
    void sendCommand(QString command);

signals:
    void cursorChanged(int);

private slots:
    void _setActiveVehicle  (Vehicle* vehicle);
    void _receiveData(uint8_t device, uint8_t flags, uint16_t timeout, uint32_t baudrate, QByteArray data);

private:
43
    bool _processANSItext(QByteArray &line);
44
    void _sendSerialData(QByteArray, bool close = false);
45
    void writeLine(int line, const QByteArray &text);
46 47 48 49 50 51 52 53

    int           _cursor_home_pos;
    int           _cursor;
    QByteArray    _incoming_buffer;
    Vehicle*      _vehicle;
    QList<QMetaObject::Connection> _uas_connections;

};