UASInterface.h 14.2 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
/*=====================================================================

3
QGroundControl Open Source Ground Control Station
pixhawk's avatar
pixhawk committed
4

5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
6

7
This file is part of the QGROUNDCONTROL project
pixhawk's avatar
pixhawk committed
8

9
    QGROUNDCONTROL is free software: you can redistribute it and/or modify
pixhawk's avatar
pixhawk committed
10 11 12 13
    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.

14
    QGROUNDCONTROL is distributed in the hope that it will be useful,
pixhawk's avatar
pixhawk committed
15 16 17 18 19
    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
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

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

/**
 * @file
 *   @brief Abstract interface, represents one unmanned aerial vehicle
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#ifndef _UASINTERFACE_H_
#define _UASINTERFACE_H_

#include <QObject>
#include <QList>
#include <QAction>
#include <QColor>
39
#include <QPointer>
pixhawk's avatar
pixhawk committed
40 41 42 43

#include "LinkInterface.h"
#include "ProtocolInterface.h"

44
class FileManager;
45

pixhawk's avatar
pixhawk committed
46 47 48 49 50 51
/**
 * @brief Interface for all robots.
 *
 * This interface is abstract and thus cannot be instantiated. It serves only as type definition.
 * It represents an unmanned aerial vehicle, e.g. a micro air vehicle.
 **/
lm's avatar
lm committed
52 53
class UASInterface : public QObject
{
pixhawk's avatar
pixhawk committed
54 55 56 57 58 59
    Q_OBJECT
public:
    virtual ~UASInterface() {}

    /* MANAGEMENT */

60
    virtual int getUASID() const = 0; ///< Get the ID of the connected UAS
pixhawk's avatar
pixhawk committed
61
    /** @brief The time interval the robot is switched on **/
62
    virtual quint64 getUptime() const = 0;
pixhawk's avatar
pixhawk committed
63

64 65
    virtual double getLatitude() const = 0;
    virtual double getLongitude() const = 0;
66 67
    virtual double getAltitudeAMSL() const = 0;
    virtual double getAltitudeRelative() const = 0;
68
    virtual bool globalPositionKnown() const = 0;
69

lm's avatar
lm committed
70 71 72 73
    virtual double getRoll() const = 0;
    virtual double getPitch() const = 0;
    virtual double getYaw() const = 0;

74
    virtual FileManager* getFileManager() = 0;
75

pixhawk's avatar
pixhawk committed
76 77 78 79 80 81 82 83
    /**
     * @brief Get the color for this UAS
     *
     * This static function holds a color map that allows to draw a new color for each robot
     *
     * @return The next color in the color map. The map holds 20 colors and starts from the beginning
     *         if the colors are exceeded.
     */
84
    static QColor getNextColor() {
pixhawk's avatar
pixhawk committed
85
        /* Create color map */
86 87 88 89
        static QList<QColor> colors = QList<QColor>()
		<< QColor(231,72,28)
		<< QColor(104,64,240)
		<< QColor(203,254,121)
90
		<< QColor(161,252,116)
91 92 93
               	<< QColor(232,33,47)
		<< QColor(116,251,110)
		<< QColor(234,38,107)
94
		<< QColor(104,250,138)
95 96 97
                << QColor(235,43,165)
		<< QColor(98,248,176)
		<< QColor(236,48,221)
98
		<< QColor(92,247,217)
99 100 101
                << QColor(200,54,238)
		<< QColor(87,231,246)
		<< QColor(151,59,239)
102
		<< QColor(81,183,244)
103 104
                << QColor(75,133,243)
		<< QColor(242,255,128)
105
		<< QColor(230,126,23);
106

pixhawk's avatar
pixhawk committed
107
        static int nextColor = -1;
108 109
        if(nextColor == 18){//if at the end of the list
            nextColor = -1;//go back to the beginning
pixhawk's avatar
pixhawk committed
110
        }
111
        nextColor++;
112 113
        return colors[nextColor];//return the next color
   }
pixhawk's avatar
pixhawk committed
114

LM's avatar
LM committed
115 116 117 118
    virtual QMap<int, QString> getComponents() = 0;

    QColor getColor()
    {
pixhawk's avatar
pixhawk committed
119 120 121
        return color;
    }

122 123 124 125 126
    enum StartCalibrationType {
        StartCalibrationRadio,
        StartCalibrationGyro,
        StartCalibrationMag,
        StartCalibrationAirspeed,
127
        StartCalibrationAccel,
128
        StartCalibrationLevel,
Don Gagne's avatar
Don Gagne committed
129
        StartCalibrationEsc,
130 131 132 133 134
        StartCalibrationCopyTrims,
        StartCalibrationUavcanEsc
    };

    enum StartBusConfigType {
135 136
        StartBusConfigActuators,
        EndBusConfigActuators,
137 138 139 140 141 142 143
    };
    
    /// Starts the specified calibration
    virtual void startCalibration(StartCalibrationType calType) = 0;
    
    /// Ends any current calibration
    virtual void stopCalibration(void) = 0;
144

145 146 147 148 149 150
    /// Starts the specified bus configuration
    virtual void startBusConfig(StartBusConfigType calType) = 0;

    /// Ends any current bus configuration
    virtual void stopBusConfig(void) = 0;

pixhawk's avatar
pixhawk committed
151 152
public slots:

153
    /** @brief Executes a command **/
154
    virtual void executeCommand(MAV_CMD command, int confirmation, float param1, float param2, float param3, float param4, float param5, float param6, float param7, int component) = 0;
155

156 157
    /** @brief Order the robot to pair its receiver **/
    virtual void pairRX(int rxType, int rxSubType) = 0;
pixhawk's avatar
pixhawk committed
158

Lorenz Meier's avatar
Lorenz Meier committed
159
    /** @brief Send the full HIL state to the MAV */
dogmaphobic's avatar
dogmaphobic committed
160
#ifndef __mobile__
Lorenz Meier's avatar
Lorenz Meier committed
161 162
    virtual void sendHilState(quint64 time_us, float roll, float pitch, float yaw, float rollspeed,
                        float pitchspeed, float yawspeed, double lat, double lon, double alt,
163
                        float vx, float vy, float vz, float ind_airspeed, float true_airspeed, float xacc, float yacc, float zacc) = 0;
Lorenz Meier's avatar
Lorenz Meier committed
164 165 166

    /** @brief RAW sensors for sensor HIL */
    virtual void sendHilSensors(quint64 time_us, float xacc, float yacc, float zacc, float rollspeed, float pitchspeed, float yawspeed,
167
                                float xmag, float ymag, float zmag, float abs_pressure, float diff_pressure, float pressure_alt, float temperature, quint32 fields_changed) = 0;
Lorenz Meier's avatar
Lorenz Meier committed
168 169

    /** @brief Send raw GPS for sensor HIL */
170
    virtual void sendHilGps(quint64 time_us, double lat, double lon, double alt, int fix_type, float eph, float epv, float vel, float vn, float ve, float vd, float cog, int satellites) = 0;
Lorenz Meier's avatar
Lorenz Meier committed
171

172 173 174
    /** @brief Send Optical Flow sensor message for HIL, (arguments and units accoding to mavlink documentation*/
    virtual void sendHilOpticalFlow(quint64 time_us, qint16 flow_x, qint16 flow_y, float flow_comp_m_x,
                            float flow_comp_m_y, quint8 quality, float ground_distance) = 0;
dogmaphobic's avatar
dogmaphobic committed
175
#endif
176

177
    /** @brief Send command to map a RC channel to a parameter */
178
    virtual void sendMapRCToParam(QString param_id, float scale, float value0, quint8 param_rc_channel_index, float valueMin, float valueMax) = 0;
179 180 181 182

    /** @brief Send command to disable all bindings/maps between RC and parameters */
    virtual void unsetRCToParameterMap() = 0;

pixhawk's avatar
pixhawk committed
183 184 185 186
protected:
    QColor color;

signals:
LM's avatar
LM committed
187
    /** @brief The robot state has changed */
pixhawk's avatar
pixhawk committed
188 189 190 191 192 193 194 195
    void statusChanged(int stateFlag);
    /** @brief The robot state has changed
     *
     * @param uas this robot
     * @param status short description of status, e.g. "connected"
     * @param description longer textual description. Should be however limited to a short text, e.g. 200 chars.
     */
    void statusChanged(UASInterface* uas, QString status, QString description);
196

197
    /** @brief A text message from the system has been received */
198
    void textMessageReceived(int uasid, int componentid, int severity, QString text);
199

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    /**
     * @brief Update the error count of a device
     *
     * The error count indicates how many errors occured during the use of a device.
     * Usually a random error from time to time is acceptable, e.g. through electromagnetic
     * interferences on device lines like I2C and SPI. A constantly and rapidly increasing
     * error count however can help to identify broken cables or misbehaving drivers.
     *
     * @param uasid System ID
     * @param component Name of the component, e.g. "IMU"
     * @param device Name of the device, e.g. "SPI0" or "I2C1"
     * @param count Errors occured since system startup
     */
    void errCountChanged(int uasid, QString component, QString device, int count);

lm's avatar
lm committed
215 216 217 218
    /**
     * @brief Drop rate of communication link updated
     *
     * @param systemId id of the air system
219
     * @param receiveDrop drop rate of packets this MAV receives (sent from GCS or other MAVs)
lm's avatar
lm committed
220
     */
221
    void dropRateChanged(int systemId,  float receiveDrop);
pixhawk's avatar
pixhawk committed
222 223 224 225
    /** @brief The robot is connected **/
    void connected();
    /** @brief The robot is disconnected **/
    void disconnected();
226

pixhawk's avatar
pixhawk committed
227 228 229
    /** @brief A value of the robot has changed.
      *
      * Typically this is used to send lowlevel information like the battery voltage to the plotting facilities of
230 231
      * the groundstation. The data here should be converted to human-readable values before being passed, so ideally
	  * SI units.
pixhawk's avatar
pixhawk committed
232 233 234
      *
      * @param uasId ID of this system
      * @param name name of the value, e.g. "battery voltage"
235
	  * @param unit The units this variable is in as an abbreviation. For system-dependent (such as raw ADC values) use "raw", for bitfields use "bits", for true/false or on/off use "bool", for unitless values use "-".
pixhawk's avatar
pixhawk committed
236 237 238
      * @param value the value that changed
      * @param msec the timestamp of the message, in milliseconds
      */
239
    void valueChanged(const int uasid, const QString& name, const QString& unit, const QVariant &value,const quint64 msecs);
lm's avatar
lm committed
240

241
    void parameterUpdate(int uas, int component, QString parameterName, int parameterCount, int parameterId, int type, QVariant value);
Don Gagne's avatar
Don Gagne committed
242

pixhawk's avatar
pixhawk committed
243 244 245 246 247 248 249 250
    /**
     * @brief The battery status has been updated
     *
     * @param uas sending system
     * @param voltage battery voltage
     * @param percent remaining capacity in percent
     * @param seconds estimated remaining flight time in seconds
     */
dongfang's avatar
dongfang committed
251
    void batteryChanged(UASInterface* uas, double voltage, double current, double percent, int seconds);
252
    void batteryConsumedChanged(UASInterface* uas, double current_consumed);
pixhawk's avatar
pixhawk committed
253 254 255 256
    void statusChanged(UASInterface* uas, QString status);
    void thrustChanged(UASInterface*, double thrust);
    void heartbeat(UASInterface* uas);
    void attitudeChanged(UASInterface*, double roll, double pitch, double yaw, quint64 usec);
257
    void attitudeChanged(UASInterface*, int component, double roll, double pitch, double yaw, quint64 usec);
258
    void attitudeRotationRatesChanged(int uas, double rollrate, double pitchrate, double yawrate, quint64 usec);
259
    void attitudeThrustSetPointChanged(UASInterface*, float rollDesired, float pitchDesired, float yawDesired, float thrustDesired, quint64 usec);
260
    /** @brief The MAV set a new setpoint in the local (not body) NED X, Y, Z frame */
lm's avatar
lm committed
261
    void positionSetPointsChanged(int uasid, float xDesired, float yDesired, float zDesired, float yawDesired, quint64 usec);
262 263
    /** @brief A user (or an autonomous mission or obstacle avoidance planner) requested to set a new setpoint */
    void userPositionSetPointsChanged(int uasid, float xDesired, float yDesired, float zDesired, float yawDesired);
264 265
    void globalPositionChanged(UASInterface*, double lat, double lon, double altAMSL, double altWGS84, quint64 usec);
    void altitudeChanged(UASInterface*, double altitudeAMSL, double altitudeWGS84, double altitudeRelative, double climbRate, quint64 usec);
lm's avatar
lm committed
266 267
    /** @brief Update the status of one satellite used for localization */
    void gpsSatelliteStatusChanged(int uasid, int satid, float azimuth, float direction, float snr, bool used);
268 269

    // The horizontal speed (a scalar)
270
    void speedChanged(UASInterface* uas, double groundSpeed, double airSpeed, quint64 usec);
271
    // Consider adding a MAV_FRAME parameter to this; could help specifying what the 3 scalars are.
272
    void velocityChanged_NED(UASInterface*, double vx, double vy, double vz, quint64 usec);
273 274

    void navigationControllerErrorsChanged(UASInterface*, double altitudeError, double speedError, double xtrackError);
275
    void NavigationControllerDataChanged(UASInterface *uas, float navRoll, float navPitch, float navBearing, float targetBearing, float targetDist);
276

pixhawk's avatar
pixhawk committed
277 278
    void imageStarted(int imgid, int width, int height, int depth, int channels);
    void imageDataReceived(int imgid, const unsigned char* imageData, int length, int startIndex);
279

pixhawk's avatar
pixhawk committed
280 281 282 283 284 285 286 287
    /** @brief Attitude control enabled/disabled */
    void attitudeControlEnabled(bool enabled);
    /** @brief Position 2D control enabled/disabled */
    void positionXYControlEnabled(bool enabled);
    /** @brief Altitude control enabled/disabled */
    void positionZControlEnabled(bool enabled);
    /** @brief Heading control enabled/disabled */
    void positionYawControlEnabled(bool enabled);
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
    /** @brief Optical flow status changed */
    void opticalFlowStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Vision based localization status changed */
    void visionLocalizationStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Infrared / Ultrasound status changed */
    void distanceSensorStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Gyroscope status changed */
    void gyroStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Accelerometer status changed */
    void accelStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Magnetometer status changed */
    void magSensorStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Barometer status changed */
    void baroStatusChanged(bool supported, bool enabled, bool ok);
    /** @brief Differential pressure / airspeed status changed */
    void airspeedStatusChanged(bool supported, bool enabled, bool ok);

305 306 307 308
    /** @brief Value of a remote control channel (raw) */
    void remoteControlChannelRawChanged(int channelId, float raw);
    /** @brief Value of a remote control channel (scaled)*/
    void remoteControlChannelScaledChanged(int channelId, float normalized);
309 310
    /** @brief Remote control RSSI changed  (0% - 100%)*/
    void remoteControlRSSIChanged(uint8_t rssi);
pixhawk's avatar
pixhawk committed
311 312 313 314 315 316

    /**
     * @brief Localization quality changed
     * @param fix 0: lost, 1: 2D local position hold, 2: 2D localization, 3: 3D localization
     */
    void localizationChanged(UASInterface* uas, int fix);
317

318
    // ERROR AND STATUS SIGNALS
319 320
    /** @brief Heartbeat timed out or was regained */
    void heartbeatTimeout(bool timeout, unsigned int ms);
321 322
    /** @brief Name of system changed */
    void nameChanged(QString newName);
323 324
    /** @brief Core specifications have changed */
    void systemSpecsChanged(int uasId);
325

326 327 328
    // HOME POSITION / ORIGIN CHANGES
    void homePositionChanged(int uas, double lat, double lon, double alt);

329
protected:
330

331
    // TIMEOUT CONSTANTS
332
    static const unsigned int timeoutIntervalHeartbeat = 3500 * 1000; ///< Heartbeat timeout is 3.5 seconds
333

pixhawk's avatar
pixhawk committed
334 335
};

lm's avatar
lm committed
336
Q_DECLARE_INTERFACE(UASInterface, "org.qgroundcontrol/1.0")
337

pixhawk's avatar
pixhawk committed
338
#endif // _UASINTERFACE_H_