1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Allow saving of config when disarmed by using THR_LO + YAW_LO + PIT_LO +

ROL_HI.
This commit is contained in:
Dominic Clifton 2014-10-24 22:39:40 +01:00
parent 247d35ec85
commit 7548154d25

View file

@ -177,6 +177,10 @@ void processRcStickPositions(rxConfig_t *rxConfig, throttleStatus_e throttleStat
return;
}
if (rcSticks == THR_LO + YAW_LO + PIT_LO + ROL_HI) {
saveConfigAndNotify();
}
if (isUsingSticksToArm) {
if (rcSticks == THR_LO + YAW_HI + PIT_CE + ROL_CE) {