2010-05-04 03:31:06 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file telemetrymonitor.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-07-16 18:01:53 +02:00
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
2010-05-04 03:31:06 +02:00
|
|
|
* @{
|
2010-07-16 18:01:53 +02:00
|
|
|
* @addtogroup UAVTalkPlugin UAVTalk Plugin
|
|
|
|
* @{
|
|
|
|
* @brief The UAVTalk protocol plugin
|
2010-05-04 03:31:06 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TELEMETRYMONITOR_H
|
|
|
|
#define TELEMETRYMONITOR_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQueue>
|
|
|
|
#include <QTimer>
|
2010-05-08 06:11:25 +02:00
|
|
|
#include <QTime>
|
2010-05-04 03:31:06 +02:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QMutexLocker>
|
2011-01-22 18:38:22 +01:00
|
|
|
#include "uavobjectmanager.h"
|
|
|
|
#include "gcstelemetrystats.h"
|
|
|
|
#include "flighttelemetrystats.h"
|
|
|
|
#include "systemstats.h"
|
2010-05-04 03:31:06 +02:00
|
|
|
#include "telemetry.h"
|
|
|
|
|
|
|
|
class TelemetryMonitor : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
TelemetryMonitor(UAVObjectManager* objMngr, Telemetry* tel);
|
2011-01-12 01:05:51 +01:00
|
|
|
~TelemetryMonitor();
|
2010-05-04 03:31:06 +02:00
|
|
|
|
2010-05-30 03:52:31 +02:00
|
|
|
signals:
|
|
|
|
void connected();
|
|
|
|
void disconnected();
|
2012-08-03 01:11:18 +02:00
|
|
|
void telemetryUpdated(double txRate, double rxRate);
|
2010-05-30 03:52:31 +02:00
|
|
|
|
2010-05-04 03:31:06 +02:00
|
|
|
public slots:
|
|
|
|
void transactionCompleted(UAVObject* obj, bool success);
|
|
|
|
void processStatsUpdates();
|
|
|
|
void flightStatsUpdated(UAVObject* obj);
|
|
|
|
|
|
|
|
private:
|
2010-05-08 06:11:25 +02:00
|
|
|
static const int STATS_UPDATE_PERIOD_MS = 4000;
|
2012-09-24 13:32:46 +02:00
|
|
|
static const int STATS_CONNECT_PERIOD_MS = 2000;
|
2010-05-08 06:11:25 +02:00
|
|
|
static const int CONNECTION_TIMEOUT_MS = 8000;
|
2010-05-04 03:31:06 +02:00
|
|
|
|
|
|
|
UAVObjectManager* objMngr;
|
|
|
|
Telemetry* tel;
|
|
|
|
QQueue<UAVObject*> queue;
|
|
|
|
GCSTelemetryStats* gcsStatsObj;
|
|
|
|
FlightTelemetryStats* flightStatsObj;
|
|
|
|
QTimer* statsTimer;
|
|
|
|
UAVObject* objPending;
|
|
|
|
QMutex* mutex;
|
2010-05-08 06:11:25 +02:00
|
|
|
QTime* connectionTimer;
|
2010-05-04 03:31:06 +02:00
|
|
|
|
|
|
|
void startRetrievingObjects();
|
|
|
|
void retrieveNextObject();
|
|
|
|
void stopRetrievingObjects();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TELEMETRYMONITOR_H
|