increased crosstrack thanks to float math fix

decreased loiter iterm, decreased throttle iterm based on simulator runs
This commit is contained in:
Jason Short 2011-12-23 14:24:03 -08:00
parent a284fc222c
commit a966a178f8
1 changed files with 3 additions and 3 deletions

View File

@ -598,7 +598,7 @@
# define LOITER_P .3 //
#endif
#ifndef LOITER_I
# define LOITER_I 0.05 //
# define LOITER_I 0.01 //
#endif
#ifndef LOITER_IMAX
# define LOITER_IMAX 30 // degrees°
@ -630,7 +630,7 @@
# define THR_HOLD_P 0.4 //
#endif
#ifndef THR_HOLD_I
# define THR_HOLD_I 0.02 // with 4m error, 12.5s windup
# define THR_HOLD_I 0.01 // with 4m error, 12.5s windup
#endif
#ifndef THR_HOLD_IMAX
# define THR_HOLD_IMAX 300
@ -652,7 +652,7 @@
// Crosstrack compensation
//
#ifndef CROSSTRACK_GAIN
# define CROSSTRACK_GAIN 4
# define CROSSTRACK_GAIN 40
#endif