RadioCalibrationData.h 3.26 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL 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.

    QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Class to hold the calibration data
 *   @author Bryan Godbolt <godbolt@ualberta.ca>
 */

30 31 32 33 34 35
#ifndef RADIOCALIBRATIONDATA_H
#define RADIOCALIBRATIONDATA_H

#include <QObject>
#include <QDebug>
#include <QVector>
36
#include <QString>
37
#include <stdexcept>
38 39


40 41 42 43
/**
  @brief Class to hold the calibration data.
  @author Bryan Godbolt <godbolt@ece.ualberta.ca>
  */
44 45
class RadioCalibrationData : public QObject
{
46
    Q_OBJECT
47 48 49 50 51 52 53 54 55 56

public:
    explicit RadioCalibrationData();
    RadioCalibrationData(const RadioCalibrationData&);
    RadioCalibrationData(const QVector<float>& aileron,
                         const QVector<float>& elevator,
                         const QVector<float>& rudder,
                         const QVector<float>& gyro,
                         const QVector<float>& pitch,
                         const QVector<float>& throttle);
57
    ~RadioCalibrationData();
58

59
    enum RadioElement {
60 61 62 63 64 65 66 67 68
        AILERON=0,
        ELEVATOR,
        RUDDER,
        GYRO,
        PITCH,
        THROTTLE
    };

    const float* operator[](int i) const;
69
#ifdef _MSC_VER
70
    const QVector<float>& operator()(int i) const;
71
#else
72
    const QVector<float>& operator()(int i) const throw(std::out_of_range);
73
#endif
74 75 76
    void set(int element, int index, float value) {
        (*data)[element][index] = value;
    }
77 78

public slots:
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
    void setAileron(int index, float value) {
        set(AILERON, index, value);
    }
    void setElevator(int index, float value) {
        set(ELEVATOR, index, value);
    }
    void setRudder(int index, float value) {
        set(RUDDER, index, value);
    }
    void setGyro(int index, float value) {
        set(GYRO, index, value);
    }
    void setPitch(int index, float value) {
        set(PITCH, index, value);
    }
    void setThrottle(int index, float value) {
        set(THROTTLE, index, value);
    }
97

98
public:
99
    /// Creates a comma seperated list of the values for a particular element
100 101
    QString toString(const RadioElement element) const;

102 103 104 105 106 107 108 109 110 111 112 113 114
protected:
    QVector<QVector<float> > *data;

    void init(const QVector<float>& aileron,
              const QVector<float>& elevator,
              const QVector<float>& rudder,
              const QVector<float>& gyro,
              const QVector<float>& pitch,
              const QVector<float>& throttle);

};

#endif // RADIOCALIBRATIONDATA_H