Copter: add short delay to arming to allow RC input

The short delay gives time for the RC inputs to be processed which
removes the chance of a false-positive on the "late frame" radio check.
A false positive could lead to an immediate disarm right after arming.
This commit is contained in:
Randy Mackay 2014-09-04 12:37:26 +09:00
parent 15470bd81b
commit 05a37dd54d
1 changed files with 3 additions and 0 deletions

View File

@ -197,6 +197,9 @@ static void init_arm_motors()
sprayer.test_pump(false);
#endif
// short delay to allow reading of rc inputs
delay(30);
// enable output to motors
output_min();