Browse Source

new defaults for params

mission-4.1.18
Jason Short 13 years ago
parent
commit
21856e7696
  1. 29
      ArduCopter/config.h

29
ArduCopter/config.h

@ -510,6 +510,12 @@ @@ -510,6 +510,12 @@
# define SUPER_SIMPLE DISABLED
#endif
// RTL Mode
#ifndef RTL_AUTO_LAND
# define RTL_AUTO_LAND ENABLED
#endif
// LOITER Mode
#ifndef OF_LOITER_YAW
# define OF_LOITER_YAW YAW_HOLD
@ -640,6 +646,22 @@ @@ -640,6 +646,22 @@
# define LOITER_IMAX 30 // degrees
#endif
//////////////////////////////////////////////////////////////////////////////
// Loiter Navigation control gains
//
#ifndef LOITER_RATE_P
# define LOITER_RATE_P 3.0 //
#endif
#ifndef LOITER_RATE_I
# define LOITER_RATE_I 0.1 // Wind control
#endif
#ifndef LOITER_RATE_D
# define LOITER_RATE_D 0.00 //
#endif
#ifndef LOITER_RATE_IMAX
# define LOITER_RATE_IMAX 30 // degrees
#endif
//////////////////////////////////////////////////////////////////////////////
// WP Navigation control gains
//
@ -656,6 +678,13 @@ @@ -656,6 +678,13 @@
# define NAV_IMAX 30 // degrees
#endif
#ifndef AUTO_SLEW_RATE
# define AUTO_SLEW_RATE 30 // degrees
#endif
#ifndef WAYPOINT_SPEED_MAX
# define WAYPOINT_SPEED_MAX 600 // 6m/s error = 13mph
#endif

Loading…
Cancel
Save