RadioComponentController.h 12.5 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11 12


/// @file
Don Gagne's avatar
Don Gagne committed
13
///     @brief Radio Config Qml Controller
14 15
///     @author Don Gagne <don@thegagnes.com

Don Gagne's avatar
Don Gagne committed
16 17
#ifndef RadioComponentController_H
#define RadioComponentController_H
18 19 20

#include <QTimer>

Don Gagne's avatar
Don Gagne committed
21
#include "FactPanelController.h"
22
#include "UASInterface.h"
23
#include "QGCLoggingCategory.h"
24
#include "AutoPilotPlugin.h"
25

Don Gagne's avatar
Don Gagne committed
26
Q_DECLARE_LOGGING_CATEGORY(RadioComponentControllerLog)
27

28
class RadioConfigest;
29 30

namespace Ui {
Don Gagne's avatar
Don Gagne committed
31
    class RadioComponentController;
32 33 34
}


Don Gagne's avatar
Don Gagne committed
35
class RadioComponentController : public FactPanelController
36 37 38
{
    Q_OBJECT
    
39
    friend class RadioConfigTest; ///< This allows our unit test to access internal information needed.
40 41
    
public:
Don Gagne's avatar
Don Gagne committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    RadioComponentController(void);
    ~RadioComponentController();
    
    Q_PROPERTY(int minChannelCount MEMBER _chanMinimum CONSTANT)
    Q_PROPERTY(int channelCount READ channelCount NOTIFY channelCountChanged)
    
    Q_PROPERTY(QQuickItem* statusText MEMBER _statusText)
    Q_PROPERTY(QQuickItem* cancelButton MEMBER _cancelButton)
    Q_PROPERTY(QQuickItem* nextButton MEMBER _nextButton)
    Q_PROPERTY(QQuickItem* skipButton MEMBER _skipButton)
    
    Q_PROPERTY(bool rollChannelMapped READ rollChannelMapped NOTIFY rollChannelMappedChanged)
    Q_PROPERTY(bool pitchChannelMapped READ pitchChannelMapped NOTIFY pitchChannelMappedChanged)
    Q_PROPERTY(bool yawChannelMapped READ yawChannelMapped NOTIFY yawChannelMappedChanged)
    Q_PROPERTY(bool throttleChannelMapped READ throttleChannelMapped NOTIFY throttleChannelMappedChanged)
    
    Q_PROPERTY(int rollChannelRCValue READ rollChannelRCValue NOTIFY rollChannelRCValueChanged)
    Q_PROPERTY(int pitchChannelRCValue READ pitchChannelRCValue NOTIFY pitchChannelRCValueChanged)
    Q_PROPERTY(int yawChannelRCValue READ yawChannelRCValue NOTIFY yawChannelRCValueChanged)
    Q_PROPERTY(int throttleChannelRCValue READ throttleChannelRCValue NOTIFY throttleChannelRCValueChanged)
    
    Q_PROPERTY(int rollChannelReversed READ rollChannelReversed NOTIFY rollChannelReversedChanged)
    Q_PROPERTY(int pitchChannelReversed READ pitchChannelReversed NOTIFY pitchChannelReversedChanged)
    Q_PROPERTY(int yawChannelReversed READ yawChannelReversed NOTIFY yawChannelReversedChanged)
    Q_PROPERTY(int throttleChannelReversed READ throttleChannelReversed NOTIFY throttleChannelReversedChanged)
    
    Q_PROPERTY(int transmitterMode READ transmitterMode WRITE setTransmitterMode NOTIFY transmitterModeChanged)
    Q_PROPERTY(QString imageHelp MEMBER _imageHelp NOTIFY imageHelpChanged)
    
    Q_ENUMS(BindModes)
    enum BindModes {
        DSM2,
        DSMX7,
        DSMX8
    };
    
    Q_INVOKABLE void spektrumBindMode(int mode);
    Q_INVOKABLE void cancelButtonClicked(void);
    Q_INVOKABLE void skipButtonClicked(void);
    Q_INVOKABLE void nextButtonClicked(void);
    Q_INVOKABLE void start(void);
Don Gagne's avatar
Don Gagne committed
83
    Q_INVOKABLE void copyTrims(void);
Don Gagne's avatar
Don Gagne committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    
    int rollChannelRCValue(void);
    int pitchChannelRCValue(void);
    int yawChannelRCValue(void);
    int throttleChannelRCValue(void);
    
    bool rollChannelMapped(void);
    bool pitchChannelMapped(void);
    bool yawChannelMapped(void);
    bool throttleChannelMapped(void);
    
    bool rollChannelReversed(void);
    bool pitchChannelReversed(void);
    bool yawChannelReversed(void);
    bool throttleChannelReversed(void);
    
    int channelCount(void);
    
    int transmitterMode(void) { return _transmitterMode; }
    void setTransmitterMode(int mode);
Don Gagne's avatar
Don Gagne committed
104 105
    
signals:
Don Gagne's avatar
Don Gagne committed
106 107
    void channelCountChanged(int channelCount);
    void channelRCValueChanged(int channel, int rcValue);
Don Gagne's avatar
Don Gagne committed
108
    
Don Gagne's avatar
Don Gagne committed
109 110 111 112
    void rollChannelMappedChanged(bool mapped);
    void pitchChannelMappedChanged(bool mapped);
    void yawChannelMappedChanged(bool mapped);
    void throttleChannelMappedChanged(bool mapped);
113
    
Don Gagne's avatar
Don Gagne committed
114 115 116 117
    void rollChannelRCValueChanged(int rcValue);
    void pitchChannelRCValueChanged(int rcValue);
    void yawChannelRCValueChanged(int rcValue);
    void throttleChannelRCValueChanged(int rcValue);
118
    
Don Gagne's avatar
Don Gagne committed
119 120 121 122
    void rollChannelReversedChanged(bool reversed);
    void pitchChannelReversedChanged(bool reversed);
    void yawChannelReversedChanged(bool reversed);
    void throttleChannelReversedChanged(bool reversed);
123
    
Don Gagne's avatar
Don Gagne committed
124 125 126 127 128 129
    void imageHelpChanged(QString source);
    void transmitterModeChanged(int mode);
    
    // @brief Signalled when in unit test mode and a message box should be displayed by the next button
    void nextButtonMessageBoxDisplayed(void);

Don Gagne's avatar
Don Gagne committed
130 131 132
    // Signaled to QML to indicator reboot is required
    void functionMappingChangedAPMReboot(void);

Don Gagne's avatar
Don Gagne committed
133
private slots:
Don Gagne's avatar
Don Gagne committed
134 135
    void _rcChannelsChanged(int channelCount, int pwmValues[Vehicle::cMaxRcChannels]);

136 137
private:
    /// @brief These identify the various controls functions. They are also used as indices into the _rgFunctioInfo
138
    /// array.
139 140 141 142 143 144 145 146 147
    enum rcCalFunctions {
        rcCalFunctionRoll,
        rcCalFunctionPitch,
        rcCalFunctionYaw,
        rcCalFunctionThrottle,
        rcCalFunctionModeSwitch,
        rcCalFunctionPosCtlSwitch,
        rcCalFunctionLoiterSwitch,
        rcCalFunctionReturnSwitch,
148
        rcCalFunctionAcroSwitch,
149 150 151 152 153 154
        rcCalFunctionMax,
        
        // Attitude functions are roll/pitch/yaw/throttle
        rcCalFunctionFirstAttitudeFunction = rcCalFunctionRoll,
        rcCalFunctionLastAttitudeFunction = rcCalFunctionThrottle,
        
nopeppermint's avatar
nopeppermint committed
155
        // Non-Attitude functions are everything else
156
        rcCalFunctionFirstNonAttitudeFunction = rcCalFunctionModeSwitch,
157
        rcCalFunctionLastNonAttitudeFunction = rcCalFunctionAcroSwitch,
158 159 160 161 162 163 164 165 166 167 168 169 170 171
    };
    
    /// @brief The states of the calibration state machine.
    enum rcCalStates {
        rcCalStateChannelWait,
        rcCalStateBegin,
        rcCalStateIdentify,
        rcCalStateMinMax,
        rcCalStateCenterThrottle,
        rcCalStateDetectInversion,
        rcCalStateTrims,
        rcCalStateSave
    };
    
Don Gagne's avatar
Don Gagne committed
172 173
    typedef void (RadioComponentController::*inputFn)(enum rcCalFunctions function, int chan, int value);
    typedef void (RadioComponentController::*buttonFn)(void);
Don Gagne's avatar
Don Gagne committed
174 175 176 177 178 179 180 181 182
    struct stateMachineEntry {
        enum rcCalFunctions function;
        const char*         instructions;
        const char*         image;
        inputFn             rcInputFn;
        buttonFn            nextFn;
        buttonFn            skipFn;
    };
    
183 184 185 186 187 188 189 190 191
    /// @brief A set of information associated with a function.
    struct FunctionInfo {
        const char* parameterName;  ///< Parameter name for function mapping
    };
    
    /// @brief A set of information associated with a radio channel.
    struct ChannelInfo {
        enum rcCalFunctions function;   ///< Function mapped to this channel, rcCalFunctionMax for none
        bool                reversed;   ///< true: channel is reverse, false: not reversed
Don Gagne's avatar
Don Gagne committed
192 193 194 195 196 197 198
        int                 rcMin;      ///< Minimum RC value
        int                 rcMax;      ///< Maximum RC value
        int                 rcTrim;     ///< Trim position
    };
    
    int _currentStep;  ///< Current step of state machine
    
Don Gagne's avatar
Don Gagne committed
199 200 201
    const struct stateMachineEntry* _getStateMachineEntry(int step) const;
    const struct FunctionInfo* _functionInfo(void) const;
    bool _px4Vehicle(void) const;
Don Gagne's avatar
Don Gagne committed
202
    
Don Gagne's avatar
Don Gagne committed
203
    void _advanceState(void);
Don Gagne's avatar
Don Gagne committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
    void _setupCurrentState(void);
    
    void _inputCenterWaitBegin(enum rcCalFunctions function, int channel, int value);
    void _inputStickDetect(enum rcCalFunctions function, int channel, int value);
    void _inputStickMin(enum rcCalFunctions function, int channel, int value);
    void _inputCenterWait(enum rcCalFunctions function, int channel, int value);
    void _inputSwitchMinMax(enum rcCalFunctions function, int channel, int value);
    void _inputSwitchDetect(enum rcCalFunctions function, int channel, int value);
    
    void _switchDetect(enum rcCalFunctions function, int channel, int value, bool moveToNextStep);
    
    void _saveAllTrims(void);
    
    bool _stickSettleComplete(int value);
    
Don Gagne's avatar
Don Gagne committed
219
    void _validateCalibration(void);
Don Gagne's avatar
Don Gagne committed
220
    void _writeCalibration(void);
221
    void _resetInternalCalibrationValues(void);
Don Gagne's avatar
Don Gagne committed
222
    void _setInternalCalibrationValuesFromParameters(void);
223
    
Don Gagne's avatar
Don Gagne committed
224 225
    void _startCalibration(void);
    void _stopCalibration(void);
226 227
    void _rcCalSave(void);

Don Gagne's avatar
Don Gagne committed
228 229
    void _writeParameters(void);
    
230 231
    void _rcCalSaveCurrentValues(void);
    
232 233 234 235 236
    void _setHelpImage(const char* imageFile);
    
    void _loadSettings(void);
    void _storeSettings(void);
    
Don Gagne's avatar
Don Gagne committed
237
    void _signalAllAttiudeValueChanges(void);
Don Gagne's avatar
Don Gagne committed
238 239

    int _chanMax(void) const;
Don Gagne's avatar
Don Gagne committed
240
    
Don Gagne's avatar
Don Gagne committed
241 242
    // @brief Called by unit test code to set the mode to unit testing
    void _setUnitTestMode(void){ _unitTestMode = true; }
243 244
    
    // Member variables
Don Gagne's avatar
Don Gagne committed
245

246 247
    static const char* _imageFileMode1Dir;
    static const char* _imageFileMode2Dir;
Don Gagne's avatar
Don Gagne committed
248
    static const char* _imageFilePrefix;
249
    static const char* _imageCenter;
Don Gagne's avatar
Don Gagne committed
250 251 252 253 254 255 256 257 258 259
    static const char* _imageHome;
    static const char* _imageThrottleUp;
    static const char* _imageThrottleDown;
    static const char* _imageYawLeft;
    static const char* _imageYawRight;
    static const char* _imageRollLeft;
    static const char* _imageRollRight;
    static const char* _imagePitchUp;
    static const char* _imagePitchDown;
    static const char* _imageSwitchMinMax;
260
    
261 262 263 264 265
    static const char* _settingsGroup;
    static const char* _settingsKeyTransmitterMode;
    
    int _transmitterMode;   ///< 1: transmitter is mode 1, 2: transmitted is mode 2
    
266 267
    static const int _updateInterval;   ///< Interval for ui update timer
    
Don Gagne's avatar
Don Gagne committed
268 269 270
    static const struct FunctionInfo _rgFunctionInfoAPM[rcCalFunctionMax]; ///< Information associated with each function, PX4 firmware
    static const struct FunctionInfo _rgFunctionInfoPX4[rcCalFunctionMax]; ///< Information associated with each function, APM firmware

271
    int _rgFunctionChannelMapping[rcCalFunctionMax];                    ///< Maps from rcCalFunctions to channel index. _chanMax indicates channel not set for this function.
Don Gagne's avatar
Don Gagne committed
272 273

    static const int _attitudeControls = 5;
274 275
    
    int _chanCount;                     ///< Number of actual rc channels available
Don Gagne's avatar
Don Gagne committed
276 277 278 279
    static const int _chanMaxPX4 = 18;  ///< Maximum number of supported rc channels, PX4 Firmware
    static const int _chanMaxAPM = 14;  ///< Maximum number of supported rc channels, APM firmware
    static const int _chanMaxAny = 18;  ///< Maximum number of support rc channels by this implementation
    static const int _chanMinimum = 5;  ///< Minimum numner of channels required to run
280
    
Don Gagne's avatar
Don Gagne committed
281
    struct ChannelInfo _rgChannelInfo[_chanMaxAny];    ///< Information associated with each rc channel
282 283

    QList<int> _apmPossibleMissingRCChannelParams;  ///< List of possible missing RC*_* params for APM stack
284 285 286 287 288 289 290
    
    enum rcCalStates _rcCalState;       ///< Current calibration state
    int _rcCalStateCurrentChannel;      ///< Current channel being worked on in rcCalStateIdentify and rcCalStateDetectInversion
    bool _rcCalStateChannelComplete;    ///< Work associated with current channel is complete
    int _rcCalStateIdentifyOldMapping;  ///< Previous mapping for channel being currently identified
    int _rcCalStateReverseOldMapping;   ///< Previous mapping for channel being currently used to detect inversion
    
Don Gagne's avatar
Don Gagne committed
291 292 293 294 295 296
    static const int _rcCalPWMCenterPoint;
    static const int _rcCalPWMValidMinValue;
    static const int _rcCalPWMValidMaxValue;
    static const int _rcCalPWMDefaultMinValue;
    static const int _rcCalPWMDefaultMaxValue;
    static const int _rcCalRoughCenterDelta;
Don Gagne's avatar
Don Gagne committed
297 298 299
    static const int _rcCalMoveDelta;
    static const int _rcCalSettleDelta;
    static const int _rcCalMinDelta;
300
    
Don Gagne's avatar
Don Gagne committed
301
    int _rcValueSave[_chanMaxAny];        ///< Saved values prior to detecting channel movement
302
    
Don Gagne's avatar
Don Gagne committed
303
    int _rcRawValue[_chanMaxAny];         ///< Current set of raw channel values
304
    
Don Gagne's avatar
Don Gagne committed
305 306 307 308 309 310 311 312
    int     _stickDetectChannel;
    int     _stickDetectInitialValue;
    int     _stickDetectValue;
    bool    _stickDetectSettleStarted;
    QTime   _stickDetectSettleElapsed;
    static const int _stickDetectSettleMSecs;
    
    bool _unitTestMode;
Don Gagne's avatar
Don Gagne committed
313 314 315 316 317 318 319
    
    QQuickItem* _statusText;
    QQuickItem* _cancelButton;
    QQuickItem* _nextButton;
    QQuickItem* _skipButton;
    
    QString _imageHelp;
320 321 322 323 324
    
#ifdef UNITTEST_BUILD
    // Nasty hack to expose controller to unit test code
    static RadioComponentController*    _unitTestController;
#endif
325 326
};

Don Gagne's avatar
Don Gagne committed
327
#endif // RadioComponentController_H