mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-03 19:52:10 +01:00
76 lines
2.3 KiB
C
76 lines
2.3 KiB
C
|
/**
|
||
|
******************************************************************************
|
||
|
*
|
||
|
* @file levelcalibrationmodel.h
|
||
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
|
||
|
* @addtogroup board level calibration
|
||
|
* @{
|
||
|
* @addtogroup ConfigPlugin Config Plugin
|
||
|
* @{
|
||
|
* @brief Telemetry configuration panel
|
||
|
*****************************************************************************/
|
||
|
/*
|
||
|
* 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 LEVELCALIBRATIONMODEL_H
|
||
|
#define LEVELCALIBRATIONMODEL_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMutex>
|
||
|
#include <QList>
|
||
|
#include "calibration/calibrationutils.h"
|
||
|
|
||
|
#include <revocalibration.h>
|
||
|
#include <accelgyrosettings.h>
|
||
|
#include <homelocation.h>
|
||
|
#include <accelstate.h>
|
||
|
#include <magstate.h>
|
||
|
namespace OpenPilot {
|
||
|
class LevelCalibrationModel : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit LevelCalibrationModel(QObject *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
void displayVisualHelp(QString elementID);
|
||
|
void displayInstructions(QString instructions, bool replace);
|
||
|
void disableAllCalibrations();
|
||
|
void enableAllCalibrations();
|
||
|
void savePositionEnabledChanged(bool state);
|
||
|
void progressChanged(int value);
|
||
|
public slots:
|
||
|
// Slots for calibrating the mags
|
||
|
void start();
|
||
|
void savePosition();
|
||
|
private slots:
|
||
|
void getSample(UAVObject *obj);
|
||
|
void compute();
|
||
|
private:
|
||
|
QMutex sensorsUpdateLock;
|
||
|
int position;
|
||
|
bool collectingData;
|
||
|
|
||
|
QList<double> rot_accum_roll;
|
||
|
QList<double> rot_accum_pitch;
|
||
|
double rot_data_roll;
|
||
|
double rot_data_pitch;
|
||
|
UAVObject::Metadata initialAttitudeStateMdata;
|
||
|
UAVObjectManager *getObjectManager();
|
||
|
};
|
||
|
}
|
||
|
#endif // LEVELCALIBRATIONMODEL_H
|