RadioCalibrationData.h 3.33 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
#include <stdint.h>

41

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

public:
    explicit RadioCalibrationData();
    RadioCalibrationData(const RadioCalibrationData&);
53 54 55 56 57 58
    RadioCalibrationData(const QVector<uint16_t>& aileron,
                         const QVector<uint16_t>& elevator,
                         const QVector<uint16_t>& rudder,
                         const QVector<uint16_t>& gyro,
                         const QVector<uint16_t>& pitch,
                         const QVector<uint16_t>& throttle);
59
    ~RadioCalibrationData();
60

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

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

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

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

104
protected:
105
    QVector<QVector<uint16_t> > *data;
106 107 108 109 110 111 112 113 114 115 116

    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