RadioConfigTest.h 3.67 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
#ifndef RadioConfigTest_H
#define RadioConfigTest_H
13

Don Gagne's avatar
Don Gagne committed
14
#include "UnitTest.h"
15
#include "MockLink.h"
Don Gagne's avatar
Don Gagne committed
16
#include "MultiSignalSpy.h"
17
#include "RadioComponentController.h"
18
#include "QGCLoggingCategory.h"
19
#include "AutoPilotPlugin.h"
20
#include "QGCQmlWidgetHolder.h"
21 22

/// @file
23
///     @brief Radio Config unit test
24 25 26
///
///     @author Don Gagne <don@thegagnes.com>

27
Q_DECLARE_LOGGING_CATEGORY(RadioConfigTestLog)
28

29
class RadioConfigTest : public UnitTest
30 31 32 33
{
    Q_OBJECT
    
public:
34
    RadioConfigTest(void);
35 36 37 38
    
private slots:
    void cleanup(void);
    
Don Gagne's avatar
Don Gagne committed
39 40 41
    void _fullCalibration_px4_test(void);
    void _fullCalibration_apm_test(void);

42
private:
Don Gagne's avatar
Don Gagne committed
43 44 45 46 47 48 49
    /// @brief Modes to run worker functions
    enum TestMode {
        testModeStandalone,     ///< Perform standalone test of calibration state
        testModePrerequisite,   ///< Setup prequisites for subsequent calibration state
        testModeFullSequence,   ///< Run as full calibration sequence
    };
    
Don Gagne's avatar
Don Gagne committed
50 51 52 53 54 55
    enum MoveToDirection {
        moveToMax,
        moveToMin,
        moveToCenter,
    };
    
56 57 58 59 60 61 62
    enum {
        validateMinMaxMask =    1 << 0,
        validateTrimsMask =     1 << 1,
        validateReversedMask =  1 << 2,
        validateMappingMask =   1 << 3,
        validateAllMask = 0xFFFF
    };
Don Gagne's avatar
Don Gagne committed
63 64

    struct ChannelSettings {
Don Gagne's avatar
Don Gagne committed
65
        int function;
Don Gagne's avatar
Don Gagne committed
66 67 68 69 70
        int rcMin;
        int rcMax;
        int rcTrim;
        int reversed;
    };
Don Gagne's avatar
Don Gagne committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84

    void _init(MAV_AUTOPILOT firmwareType);
    void _channelHomePosition(void);
    void _minRCChannels(void);
    void _beginCalibration(void);
    void _stickMoveWaitForSettle(int channel, int value);
    void _stickMoveAutoStep(const char* functionStr, enum RadioComponentController::rcCalFunctions function, enum MoveToDirection direction, bool identifyStep);
    void _switchMinMaxStep(void);
    bool _px4Vehicle(void) const;
    const struct RadioComponentController::FunctionInfo* _functionInfo(void) const;
    const struct ChannelSettings* _channelSettings(void) const;
    const struct ChannelSettings* _channelSettingsValidate(void) const;
    void _fullCalibrationWorker(MAV_AUTOPILOT firmwareType);
    int _chanMax(void) const;
Don Gagne's avatar
Don Gagne committed
85
    
Don Gagne's avatar
Don Gagne committed
86
    void _validateParameters(void);
87
    
88
    AutoPilotPlugin*    _autopilot;
89
    
90
    QGCQmlWidgetHolder* _calWidget;
91 92 93 94
    
    enum {
        nextButtonMask =        1 << 0,
        cancelButtonMask =      1 << 1,
Don Gagne's avatar
Don Gagne committed
95
        skipButtonMask =        1 << 2
96 97
    };
    
Don Gagne's avatar
Don Gagne committed
98 99
    const char*         _rgSignals[1];
    MultiSignalSpy*     _multiSpyNextButtonMessageBox;
Don Gagne's avatar
Don Gagne committed
100 101 102 103 104
    
    // When settings values into min/max/trim we set them slightly different than the defaults so that
    // we can distinguish between the two values.
    static const int _testMinValue;
    static const int _testMaxValue;
Don Gagne's avatar
Don Gagne committed
105
    static const int _testCenterValue;
Don Gagne's avatar
Don Gagne committed
106
    
Don Gagne's avatar
Don Gagne committed
107
    static const int _stickSettleWait;
108
	
Don Gagne's avatar
Don Gagne committed
109 110 111 112 113
    static const struct ChannelSettings _rgChannelSettingsPX4[RadioComponentController::_chanMaxPX4];
    static const struct ChannelSettings _rgChannelSettingsAPM[RadioComponentController::_chanMaxAPM];
    static const struct ChannelSettings _rgChannelSettingsValidatePX4[RadioComponentController::_chanMaxPX4];
    static const struct ChannelSettings _rgChannelSettingsValidateAPM[RadioComponentController::_chanMaxAPM];

114 115 116
	int _rgFunctionChannelMap[RadioComponentController::rcCalFunctionMax];
    
    RadioComponentController*   _controller;
117 118 119
};

#endif