PX4AutoPilotPlugin.h 3.33 KB
Newer Older
1
/*=====================================================================
2

3
 QGroundControl Open Source Ground Control Station
4

5
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
6

7
 This file is part of the QGROUNDCONTROL project
8

9 10 11 12
 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.
13

14 15 16 17
 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.
18

19 20
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
21

22 23 24 25 26 27
 ======================================================================*/

#ifndef PX4AUTOPILOT_H
#define PX4AUTOPILOT_H

#include "AutoPilotPlugin.h"
28
#include "PX4AirframeLoader.h"
Don Gagne's avatar
Don Gagne committed
29
#include "AirframeComponent.h"
Don Gagne's avatar
Don Gagne committed
30
#include "PX4RadioComponent.h"
31
#include "ESP8266Component.h"
Don Gagne's avatar
Don Gagne committed
32 33 34
#include "FlightModesComponent.h"
#include "SensorsComponent.h"
#include "SafetyComponent.h"
35
#include "CameraComponent.h"
dogmaphobic's avatar
dogmaphobic committed
36
#include "PowerComponent.h"
Don Gagne's avatar
Don Gagne committed
37
#include "PX4TuningComponent.h"
38
#include "Vehicle.h"
39

40 41
#include <QImage>

42 43 44 45 46 47 48 49 50
/// @file
///     @brief This is the PX4 specific implementation of the AutoPilot class.
///     @author Don Gagne <don@thegagnes.com>

class PX4AutoPilotPlugin : public AutoPilotPlugin
{
    Q_OBJECT

public:
51
    PX4AutoPilotPlugin(Vehicle* vehicle, QObject* parent);
Don Gagne's avatar
Don Gagne committed
52 53 54
    ~PX4AutoPilotPlugin();

    // Overrides from AutoPilotPlugin
55
    virtual const QVariantList& vehicleComponents(void);
56

Don Gagne's avatar
Don Gagne committed
57
    // These methods should only be used by objects within the plugin
58
    AirframeComponent*      airframeComponent(void)     { return _airframeComponent; }
Don Gagne's avatar
Don Gagne committed
59
    PX4RadioComponent*      radioComponent(void)        { return _radioComponent; }
60
    ESP8266Component*       esp8266Component(void)      { return _esp8266Component; }
61 62 63
    FlightModesComponent*   flightModesComponent(void)  { return _flightModesComponent; }
    SensorsComponent*       sensorsComponent(void)      { return _sensorsComponent; }
    SafetyComponent*        safetyComponent(void)       { return _safetyComponent; }
64
    CameraComponent*        cameraComponent(void)       { return _cameraComponent; }
65
    PowerComponent*         powerComponent(void)        { return _powerComponent; }
Don Gagne's avatar
Don Gagne committed
66
    PX4TuningComponent*     tuningComponent(void)       { return _tuningComponent; }
dogmaphobic's avatar
dogmaphobic committed
67

68 69
public slots:
    // FIXME: This is public until we restructure AutoPilotPlugin/FirmwarePlugin/Vehicle
70
    void _parametersReadyPreChecks(bool missingParameters);
71

Don Gagne's avatar
Don Gagne committed
72
private:
73
    PX4AirframeLoader*      _airframeFacts;
Don Gagne's avatar
Don Gagne committed
74 75
    QVariantList            _components;
    AirframeComponent*      _airframeComponent;
Don Gagne's avatar
Don Gagne committed
76
    PX4RadioComponent*      _radioComponent;
77
    ESP8266Component*       _esp8266Component;
Don Gagne's avatar
Don Gagne committed
78 79 80
    FlightModesComponent*   _flightModesComponent;
    SensorsComponent*       _sensorsComponent;
    SafetyComponent*        _safetyComponent;
81
    CameraComponent*        _cameraComponent;
dogmaphobic's avatar
dogmaphobic committed
82
    PowerComponent*         _powerComponent;
Don Gagne's avatar
Don Gagne committed
83
    PX4TuningComponent*     _tuningComponent;
84
    bool                    _incorrectParameterVersion; ///< true: parameter version incorrect, setup not allowed
85 86 87
};

#endif