Skip to content
Snippets Groups Projects
Commit f7017f1f authored by Jason Short's avatar Jason Short
Browse files

Arducopter: Config.h defaults adjustments

parent 219fed14
No related branches found
No related tags found
No related merge requests found
......@@ -430,7 +430,7 @@
#endif
#ifndef AUTO_LAND_TIME
# define AUTO_LAND_TIME 10
# define AUTO_LAND_TIME 5
#endif
......@@ -565,7 +565,11 @@
// RTL Mode
#ifndef RTL_APPROACH_ALT
# define RTL_APPROACH_ALT 200
# define RTL_APPROACH_ALT 200 // cm!!!
#endif
#ifndef RTL_HOLD_ALT
# define RTL_HOLD_ALT 1500 // height to return to Home in CM, 0 = Maintain current altitude
#endif
......@@ -786,10 +790,10 @@
// RATE control
#ifndef THROTTLE_P
# define THROTTLE_P 0.4 // .25
# define THROTTLE_P 0.3 // .25
#endif
#ifndef THROTTLE_I
# define THROTTLE_I 0.02
# define THROTTLE_I 0.03
#endif
#ifndef THROTTLE_D
# define THROTTLE_D 0.0 //
......@@ -943,10 +947,6 @@
# define LOITER_RADIUS 10 // meters for circle mode
#endif
#ifndef ALT_HOLD_HOME
# define ALT_HOLD_HOME 0 // height to return to Home in CM, 0 = Maintain current altitude
#endif
#ifndef USE_CURRENT_ALT
# define USE_CURRENT_ALT FALSE
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment