1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Merge branch 'bugfix-flight'

This commit is contained in:
James Cotton 2011-05-05 00:36:55 -05:00
commit dd36192e37

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