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:
parent
247d35ec85
commit
7548154d25
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue