mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
OP-470: Make arm/disarm threshold 50% instead of 90%
This commit is contained in:
parent
6d30da68e6
commit
05684e966b
@ -366,9 +366,9 @@ static void manualControlTask(void *parameters)
|
||||
|
||||
if (connection_state == CONNECTED) {
|
||||
// Should use RC input only if RX is connected
|
||||
if (armingInputLevel <= -0.90)
|
||||
if (armingInputLevel <= -0.50)
|
||||
manualArm = true;
|
||||
else if (armingInputLevel >= +0.90)
|
||||
else if (armingInputLevel >= +0.50)
|
||||
manualDisarm = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user