PX4RCCalibrationTest.h 4.43 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 30 31 32
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 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/>.
 
 ======================================================================*/

#ifndef PX4RCCALIBRATIONTEST_H
#define PX4RCCALIBRATIONTEST_H

#include "AutoTest.h"
#include "MockUASManager.h"
#include "MockUAS.h"
#include "px4_configuration/PX4RCCalibration.h"

/// @file
Don Gagne's avatar
Don Gagne committed
33
///     @brief PX4RCCalibration Widget unit test
34 35 36
///
///     @author Don Gagne <don@thegagnes.com>

Don Gagne's avatar
Don Gagne committed
37
///     @brief PX4RCCalibration Widget unit test
38 39 40 41 42 43 44 45
class PX4RCCalibrationTest : public QObject
{
    Q_OBJECT
    
public:
    PX4RCCalibrationTest(void);
    
private slots:
Don Gagne's avatar
Don Gagne committed
46
    void initTestCase(void);
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    void init(void);
    void cleanup(void);
    
    void _setUAS_test(void);
    void _minRCChannels_test(void);
    //void _liveRC_test(void);
    void _beginState_test(void);
    void _identifyState_test(void);
    void _minMaxState_test(void);
    void _centerThrottleState_test(void);
    void _detectInversionState_test(void);
    void _trimsState_test(void);
    void _fullCalibration_test(void);
    
private:
Don Gagne's avatar
Don Gagne committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75
    /// @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
    };
    
    void _centerChannels(void);
    void _beginState_worker(enum TestMode mode);
    void _identifyState_worker(enum TestMode mode);
    void _minMaxState_worker(enum TestMode mode);
    void _centerThrottleState_worker(enum TestMode mode);
    void _detectInversionState_worker(enum TestMode mode);
    void _trimsState_worker(enum TestMode mode);
76 77 78 79 80 81 82 83
    
    enum {
        validateMinMaxMask =    1 << 0,
        validateTrimsMask =     1 << 1,
        validateReversedMask =  1 << 2,
        validateMappingMask =   1 << 3,
        validateAllMask = 0xFFFF
    };
Don Gagne's avatar
Don Gagne committed
84 85 86 87 88 89 90 91 92 93 94 95 96

    struct ChannelSettings {
        int rcMin;
        int rcMax;
        int rcTrim;
        int reversed;
        bool isMinMaxShown;
        bool isMinValid;
        bool isMaxValid;
    };
    
    void _validateParameters(int validateMask);
    void _validateWidgets(int validateMask, const struct ChannelSettings* rgChannelSettings);
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    
    MockUASManager*     _mockUASManager;
    MockUAS*            _mockUAS;
    
    PX4RCCalibration*   _calWidget;
    
    enum {
        nextButtonMask =        1 << 0,
        cancelButtonMask =      1 << 1,
        skipButtonMask =        1 << 2,
        tryAgainButtonMask =    1 << 3
    };
    
    QPushButton*    _nextButton;
    QPushButton*    _cancelButton;
    QPushButton*    _skipButton;
    QPushButton*    _tryAgainButton;
    QLabel*         _statusLabel;
    
Don Gagne's avatar
Don Gagne committed
116
    RCChannelWidget* _rgRadioWidget[PX4RCCalibration::_chanMax];
Don Gagne's avatar
Don Gagne committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
    
    // 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;
    static const int _testTrimValue;
    static const int _testThrottleTrimValue;
    
    static const int _availableChannels = 8;    ///< 8 channel RC Trasmitter
    static const int _requiredChannels = 5;     ///< Required channels are 0-4
    static const int _minMaxChannels = _requiredChannels + 1;    ///< Send min/max to channels 0-5
    static const int _attitudeChannels = 4;     ///< Attitude channels are 0-3
    
    static const struct ChannelSettings _rgChannelSettingsPreValidate[_availableChannels];
    static const struct ChannelSettings _rgChannelSettingsPostValidate[PX4RCCalibration::_chanMax];
132 133 134 135 136
};

DECLARE_TEST(PX4RCCalibrationTest)

#endif