MavlinkMessagesTimer.cc 1.58 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2018 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
#include "MavlinkMessagesTimer.h"
11 12 13

#include <QDebug>

14
MavlinkMessagesTimer::MavlinkMessagesTimer(int vehicle_id, bool high_latency) :
15 16 17 18 19
    _active(true),
    _timer(new QTimer),
    _vehicleID(vehicle_id),
    _high_latency(high_latency)
{
20 21
}

22
void MavlinkMessagesTimer::init()
23 24
{
    if (!_high_latency) {
25 26
        _timer->setInterval(_messageReceivedTimeoutMSecs);
        _timer->setSingleShot(false);
27 28 29
        _timer->start();
    }
    emit activeChanged(true, _vehicleID);
30
    QObject::connect(_timer, &QTimer::timeout, this, &MavlinkMessagesTimer::timerTimeout);
31 32
}

33

34
MavlinkMessagesTimer::~MavlinkMessagesTimer()
35
{
36
    if (_timer) {
37
        QObject::disconnect(_timer, &QTimer::timeout, this, &MavlinkMessagesTimer::timerTimeout);
38 39 40 41 42 43 44 45
        _timer->stop();
        delete _timer;
        _timer = nullptr;
    }

    emit activeChanged(false, _vehicleID);
}

46
void MavlinkMessagesTimer::restartTimer()
47 48 49 50 51 52 53 54 55
{
    if (!_active) {
        _active = true;
        emit activeChanged(true, _vehicleID);
    }

    _timer->start();
}

56
void MavlinkMessagesTimer::timerTimeout()
57 58 59 60 61 62 63 64 65
{
    if (!_high_latency) {
        if (_active) {
            _active = false;
            emit activeChanged(false, _vehicleID);
        }
        emit heartbeatTimeout(_vehicleID);
    }
}