Adjust info/warning status (#14088)
[betaflight.git] / src / test / unit / rx_rx_unittest.cc
blob9ccb4a36ec8b6a341087967c75e9a626e02a7539
1 /*
2 * This file is part of Cleanflight.
4 * Cleanflight is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * Cleanflight is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
18 #include <stdint.h>
19 #include <stdbool.h>
21 #include <limits.h>
23 extern "C" {
24 #include "platform.h"
26 #include "pg/rx.h"
27 #include "build/debug.h"
28 #include "drivers/io.h"
29 #include "fc/rc_controls.h"
30 #include "fc/runtime_config.h"
31 #include "flight/failsafe.h"
32 #include "rx/rx.h"
33 #include "fc/rc_modes.h"
34 #include "common/maths.h"
35 #include "common/utils.h"
36 #include "config/feature.h"
37 #include "pg/pg.h"
38 #include "pg/pg_ids.h"
39 #include "io/beeper.h"
41 extern boxBitmask_t rcModeActivationMask;
42 int16_t debug[DEBUG16_VALUE_COUNT];
43 uint8_t debugMode = 0;
44 uint8_t armingFlags = 0;
46 bool isPulseValid(uint16_t pulseDuration);
48 PG_RESET_TEMPLATE(featureConfig_t, featureConfig,
49 .enabledFeatures = 0
52 PG_REGISTER(flight3DConfig_t, flight3DConfig, PG_MOTOR_3D_CONFIG, 0);
53 PG_REGISTER(failsafeConfig_t, failsafeConfig, PG_FAILSAFE_CONFIG, 0);
56 #include "unittest_macros.h"
57 #include "gtest/gtest.h"
59 #define DE_ACTIVATE_ALL_BOXES 0
61 typedef struct testData_s {
62 bool isPPMDataBeingReceived;
63 bool isPWMDataBeingReceived;
64 } testData_t;
66 static testData_t testData;
68 #if 0 //!! valid pulse handling has changed so these test now test removed functions
69 TEST(RxTest, TestValidFlightChannels)
71 // given
72 memset(&testData, 0, sizeof(testData));
73 memset(&rcModeActivationMask, 0, sizeof(rcModeActivationMask)); // BOXFAILSAFE must be OFF
75 // and
76 rxConfigMutable()->rx_min_usec = 1000;
77 rxConfigMutable()->rx_max_usec = 2000;
79 // and
80 modeActivationConditionsMutable(0)->auxChannelIndex = 0;
81 modeActivationConditionsMutable(0)->modeId = BOXARM;
82 modeActivationConditionsMutable(0)->range.startStep = CHANNEL_VALUE_TO_STEP(CHANNEL_RANGE_MIN);
83 modeActivationConditionsMutable(0)->range.endStep = CHANNEL_VALUE_TO_STEP(1600);
85 analyzeModeActivationConditions();
87 // when
88 rxInit();
90 // then (ARM channel should be positioned just 1 step above active range to init to OFF)
91 EXPECT_EQ(1625, rcData[modeActivationConditions(0)->auxChannelIndex + NON_AUX_CHANNEL_COUNT]);
93 // given
94 rxResetFlightChannelStatus();
96 // and
97 for (uint8_t channelIndex = 0; channelIndex < MAX_SUPPORTED_RC_CHANNEL_COUNT; channelIndex++) {
98 bool validPulse = isPulseValid(1500);
99 rxUpdateFlightChannelStatus(channelIndex, validPulse);
102 // then
103 EXPECT_TRUE(rxHaveValidFlightChannels());
106 TEST(RxTest, TestValidFlightChannelsHighArm)
108 // given
109 memset(&testData, 0, sizeof(testData));
110 memset(&rcModeActivationMask, 0, sizeof(rcModeActivationMask)); // BOXFAILSAFE must be OFF
112 // and
113 rxConfigMutable()->rx_min_usec = 1000;
114 rxConfigMutable()->rx_max_usec = 2000;
116 // and
117 modeActivationConditionsMutable(0)->auxChannelIndex = 0;
118 modeActivationConditionsMutable(0)->modeId = BOXARM;
119 modeActivationConditionsMutable(0)->range.startStep = CHANNEL_VALUE_TO_STEP(1400);
120 modeActivationConditionsMutable(0)->range.endStep = CHANNEL_VALUE_TO_STEP(CHANNEL_RANGE_MAX);
122 analyzeModeActivationConditions();
124 // when
125 rxInit();
127 // then (ARM channel should be positioned just 1 step below active range to init to OFF)
128 EXPECT_EQ(1375, rcData[modeActivationConditions(0)->auxChannelIndex + NON_AUX_CHANNEL_COUNT]);
130 // given
131 rxResetFlightChannelStatus();
133 // and
134 for (uint8_t channelIndex = 0; channelIndex < MAX_SUPPORTED_RC_CHANNEL_COUNT; channelIndex++) {
135 bool validPulse = isPulseValid(1500);
136 rxUpdateFlightChannelStatus(channelIndex, validPulse);
139 // then
140 EXPECT_TRUE(rxHaveValidFlightChannels());
143 TEST(RxTest, TestInvalidFlightChannels)
145 // given
146 memset(&testData, 0, sizeof(testData));
148 // and
149 rxConfigMutable()->rx_min_usec = 1000;
150 rxConfigMutable()->rx_max_usec = 2000;
152 // and
153 modeActivationConditionsMutable(0)->auxChannelIndex = 0;
154 modeActivationConditionsMutable(0)->modeId = BOXARM;
155 modeActivationConditionsMutable(0)->range.startStep = CHANNEL_VALUE_TO_STEP(1400);
156 modeActivationConditionsMutable(0)->range.endStep = CHANNEL_VALUE_TO_STEP(CHANNEL_RANGE_MAX);
158 analyzeModeActivationConditions();
160 // and
161 uint16_t channelPulses[MAX_SUPPORTED_RC_CHANNEL_COUNT];
162 memset(&channelPulses, 1500, sizeof(channelPulses));
164 // and
165 rxInit();
167 // then (ARM channel should be positioned just 1 step below active range to init to OFF)
168 EXPECT_EQ(1375, rcData[modeActivationConditions(0)->auxChannelIndex + NON_AUX_CHANNEL_COUNT]);
170 // and
171 for (uint8_t stickChannelIndex = 0; stickChannelIndex < STICK_CHANNEL_COUNT; stickChannelIndex++) {
172 // given
173 rxResetFlightChannelStatus();
175 for (uint8_t otherStickChannelIndex = 0; otherStickChannelIndex < STICK_CHANNEL_COUNT; otherStickChannelIndex++) {
176 channelPulses[otherStickChannelIndex] = rxConfig()->rx_min_usec;
178 channelPulses[stickChannelIndex] = rxConfig()->rx_min_usec - 1;
180 // when
181 for (uint8_t channelIndex = 0; channelIndex < MAX_SUPPORTED_RC_CHANNEL_COUNT; channelIndex++) {
182 bool validPulse = isPulseValid(channelPulses[channelIndex]);
183 rxUpdateFlightChannelStatus(channelIndex, validPulse);
186 // then
187 EXPECT_FALSE(rxHaveValidFlightChannels());
189 // given
190 rxResetFlightChannelStatus();
192 for (uint8_t otherStickChannelIndex = 0; otherStickChannelIndex < STICK_CHANNEL_COUNT; otherStickChannelIndex++) {
193 channelPulses[otherStickChannelIndex] = rxConfig()->rx_max_usec;
195 channelPulses[stickChannelIndex] = rxConfig()->rx_max_usec + 1;
197 // when
198 for (uint8_t channelIndex = 0; channelIndex < MAX_SUPPORTED_RC_CHANNEL_COUNT; channelIndex++) {
199 bool validPulse = isPulseValid(channelPulses[channelIndex]);
200 rxUpdateFlightChannelStatus(channelIndex, validPulse);
203 // then
204 EXPECT_FALSE(rxHaveValidFlightChannels());
207 #endif
209 // STUBS
211 extern "C" {
212 void failsafeOnValidDataFailed() {}
213 void failsafeOnValidDataReceived() {}
215 void failsafeOnRxSuspend(uint32_t ) {}
216 void failsafeOnRxResume(void) {}
217 bool failsafeIsActive(void) { return false; }
218 bool failsafeIsReceivingRxData(void) { return true; }
219 uint32_t failsafeFailurePeriodMs(void) { return 400; }
220 uint16_t flightModeFlags = 0;
222 uint32_t micros(void) { return 0; }
223 uint32_t millis(void) { return 0; }
225 bool isPPMDataBeingReceived(void) {
226 return testData.isPPMDataBeingReceived;
229 bool isPWMDataBeingReceived(void) {
230 return testData.isPWMDataBeingReceived;
233 void resetPPMDataReceivedState(void) {}
234 bool rxMspFrameComplete(void) { return false; }
236 void crsfRxInit(const rxConfig_t *, rxRuntimeState_t *) {}
237 void ibusInit(const rxConfig_t *, rxRuntimeState_t *) {}
238 void jetiExBusInit(const rxConfig_t *, rxRuntimeState_t *) {}
239 void sbusInit(const rxConfig_t *, rxRuntimeState_t *) {}
240 void spektrumInit(const rxConfig_t *, rxRuntimeState_t *) {}
241 void sumdInit(const rxConfig_t *, rxRuntimeState_t *) {}
242 void sumhInit(const rxConfig_t *, rxRuntimeState_t *) {}
243 void xBusInit(const rxConfig_t *, rxRuntimeState_t *) {}
244 void rxMspInit(const rxConfig_t *, rxRuntimeState_t *) {}
245 void rxPwmInit(const rxConfig_t *, rxRuntimeState_t *) {}
246 void setArmingDisabled(armingDisableFlags_e flag) { UNUSED(flag); }
247 void unsetArmingDisabled(armingDisableFlags_e flag) { UNUSED(flag); }
248 bool taskUpdateRxMainInProgress(void) { return true; }
249 float pt1FilterGain(float f_cut, float dT)
251 UNUSED(f_cut);
252 UNUSED(dT);
253 return 0.0;
256 void pt1FilterInit(pt1Filter_t *filter, float k)
258 UNUSED(filter);
259 UNUSED(k);
262 void pt1FilterUpdateCutoff(pt1Filter_t *filter, float k)
264 UNUSED(filter);
265 UNUSED(k);
268 float pt1FilterApply(pt1Filter_t *filter, float input)
270 UNUSED(filter);
271 UNUSED(input);
272 return 0.0;
275 void pinioBoxTaskControl(void) {}