From 36f8f7c4eb3acdc8fe4a18fdc91b3954db6ed2b4 Mon Sep 17 00:00:00 2001 From: Michael Oborne Date: Thu, 24 May 2012 06:22:17 +0800 Subject: [PATCH] increase resolution on params 0.1 > 0.01 --- ArduPlane/Parameters.pde | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ArduPlane/Parameters.pde b/ArduPlane/Parameters.pde index f14ca8bbbb..d1bb21685e 100644 --- a/ArduPlane/Parameters.pde +++ b/ArduPlane/Parameters.pde @@ -28,25 +28,25 @@ static const AP_Param::Info var_info[] PROGMEM = { // @Param: KFF_PTCHCOMP // @DisplayName: Pitch Compensation - // @Description: Adds pitch input to compensate for the loss of lift due to roll control. + // @Description: Adds pitch input to compensate for the loss of lift due to roll control. 0 = 0 %, 1 = 100% // @Range: 0 1 - // @Increment: 0.1 + // @Increment: 0.01 // @User: Advanced GSCALAR(kff_pitch_compensation, "KFF_PTCHCOMP"), // @Param: KFF_RDDRMIX // @DisplayName: Rudder Mix - // @Description: The ammount of rudder mix to apply during aileron movement + // @Description: The ammount of rudder mix to apply during aileron movement 0 = 0 %, 1 = 100% // @Range: 0 1 - // @Increment: 0.1 + // @Increment: 0.01 // @User: Standard GSCALAR(kff_rudder_mix, "KFF_RDDRMIX"), // @Param: KFF_PTCH2THR // @DisplayName: Pitch to Throttle Mix - // @Description: Pitch to throttle feed-forward gain. + // @Description: Pitch to throttle feed-forward gain. // @Range: 0 5 - // @Increment: 0.1 + // @Increment: 0.01 // @User: Advanced GSCALAR(kff_pitch_to_throttle, "KFF_PTCH2THR"), @@ -54,7 +54,7 @@ static const AP_Param::Info var_info[] PROGMEM = { // @DisplayName: Throttle to Pitch Mix // @Description: Throttle to pitch feed-forward gain. // @Range: 0 5 - // @Increment: 0.1 + // @Increment: 0.01 // @User: Advanced GSCALAR(kff_throttle_to_pitch, "KFF_THR2PTCH"),