Browse Source

Copter: reduce default AltHold P to 1.0 (was 2.0)

This helps reduce jumpiness due to althold feed forward
master
Randy Mackay 12 years ago
parent
commit
069bd17928
  1. 1
      ArduCopter/ReleaseNotes.txt
  2. 2
      ArduCopter/config.h

1
ArduCopter/ReleaseNotes.txt

@ -5,6 +5,7 @@ Improvements over 3.0.0-rc5
1) bug fix to Circle mode's start position (was moving to last loiter target) 1) bug fix to Circle mode's start position (was moving to last loiter target)
2) WP_ACCEL parameter added to allow user to adjust acceleration during missions 2) WP_ACCEL parameter added to allow user to adjust acceleration during missions
3) loiter acceleration set to half of LOIT_SPEED parameter value (was hard-coded) 3) loiter acceleration set to half of LOIT_SPEED parameter value (was hard-coded)
4) reduce AltHold P to 1.0 (was 2.0)
------------------------------------------------------------------ ------------------------------------------------------------------
ArduCopter 3.0.0-rc5 04-Jun-2013 ArduCopter 3.0.0-rc5 04-Jun-2013
Improvements over 3.0.0-rc4 Improvements over 3.0.0-rc4

2
ArduCopter/config.h

@ -918,7 +918,7 @@
#endif #endif
#ifndef ALT_HOLD_P #ifndef ALT_HOLD_P
# define ALT_HOLD_P 2.0f # define ALT_HOLD_P 1.0f
#endif #endif
#ifndef ALT_HOLD_I #ifndef ALT_HOLD_I
# define ALT_HOLD_I 0.0f # define ALT_HOLD_I 0.0f

Loading…
Cancel
Save