From 8754ce9eedc064c472589394446af48fc61ff0d5 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Wed, 21 Jan 2015 20:14:56 +0900 Subject: [PATCH] Copter: move 80% thr limit to MotorsTri --- ArduCopter/motors.pde | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ArduCopter/motors.pde b/ArduCopter/motors.pde index b26d7c93fe..31a6c2d22c 100644 --- a/ArduCopter/motors.pde +++ b/ArduCopter/motors.pde @@ -694,10 +694,6 @@ set_servos_4() if (ap.motor_test) { motor_test_output(); } else { -#if FRAME_CONFIG == TRI_FRAME - // To-Do: implement improved stability patch for tri so that we do not need to limit throttle input to motors - g.rc_3.servo_out = min(g.rc_3.servo_out, 800); -#endif motors.output(); } }