This commit is contained in:
Jason Short 2011-09-24 21:50:08 -07:00
commit f8ac191402
1 changed files with 6 additions and 1 deletions

View File

@ -159,7 +159,12 @@ static void output_motors_armed()
// for helis - armed or disarmed we allow servos to move // for helis - armed or disarmed we allow servos to move
static void output_motors_disarmed() static void output_motors_disarmed()
{ {
//heli_move_servos_to_mid(); if(g.rc_3.control_in > 0){
// we have pushed up the throttle
// remove safety
motor_auto_armed = true;
}
output_motors_armed(); output_motors_armed();
} }