Browse Source

Plane: moved some default values to Parameters.pde

mission-4.1.18
Andrew Tridgell 12 years ago
parent
commit
9c6f80c42b
  1. 4
      ArduPlane/Parameters.pde
  2. 6
      ArduPlane/config.h

4
ArduPlane/Parameters.pde

@ -64,7 +64,7 @@ const AP_Param::Info var_info[] PROGMEM = { @@ -64,7 +64,7 @@ const AP_Param::Info var_info[] PROGMEM = {
// @Range: 0 5
// @Increment: 0.01
// @User: Advanced
GSCALAR(kff_pitch_to_throttle, "KFF_PTCH2THR", P_TO_T),
GSCALAR(kff_pitch_to_throttle, "KFF_PTCH2THR", 0),
// @Param: KFF_THR2PTCH
// @DisplayName: Throttle to Pitch Mix
@ -72,7 +72,7 @@ const AP_Param::Info var_info[] PROGMEM = { @@ -72,7 +72,7 @@ const AP_Param::Info var_info[] PROGMEM = {
// @Range: 0 5
// @Increment: 0.01
// @User: Advanced
GSCALAR(kff_throttle_to_pitch, "KFF_THR2PTCH", T_TO_P),
GSCALAR(kff_throttle_to_pitch, "KFF_THR2PTCH", 0),
// @Param: STICK_MIXING
// @DisplayName: Stick Mixing

6
ArduPlane/config.h

@ -655,12 +655,6 @@ @@ -655,12 +655,6 @@
#ifndef THROTTLE_SLEW_LIMIT
# define THROTTLE_SLEW_LIMIT 0
#endif
#ifndef P_TO_T
# define P_TO_T 0
#endif
#ifndef T_TO_P
# define T_TO_P 0
#endif
#ifndef PITCH_TARGET
# define PITCH_TARGET 0
#endif

Loading…
Cancel
Save