1
0
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:
James Cotton 2011-05-04 22:53:00 -05:00
parent 6d30da68e6
commit 05684e966b

View File

@ -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;
}