From cd2ec1f57fe10f21010dc98c2802f25a890fd89a Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Sun, 7 Jul 2019 09:32:22 +1000 Subject: [PATCH] Copter: remove set_default_dead_zone statement with no effect This is immediately undone in the unconditional code below the #if --- ArduCopter/radio.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ArduCopter/radio.cpp b/ArduCopter/radio.cpp index 8966148393..bc2e82f105 100644 --- a/ArduCopter/radio.cpp +++ b/ArduCopter/radio.cpp @@ -11,7 +11,6 @@ void Copter::default_dead_zones() #if FRAME_CONFIG == HELI_FRAME channel_throttle->set_default_dead_zone(10); channel_yaw->set_default_dead_zone(15); - rc().channel(CH_6)->set_default_dead_zone(10); #else channel_throttle->set_default_dead_zone(30); channel_yaw->set_default_dead_zone(20);