1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

absolute control feature

This commit is contained in:
Thorsten Laux 2018-05-25 12:59:27 +02:00
parent df71817fba
commit bd289121fc
3 changed files with 71 additions and 24 deletions

View file

@ -132,6 +132,9 @@ typedef struct pidProfile_s {
uint16_t acro_trainer_lookahead_ms; // The lookahead window in milliseconds used to reduce overshoot
uint8_t acro_trainer_debug_axis; // The axis for which record debugging values are captured 0=roll, 1=pitch
uint8_t acro_trainer_gain; // The strength of the limiting. Raising may reduce overshoot but also lead to oscillation around the angle limit
uint8_t abs_control_gain; // How strongly should the absolute accumulated error be corrected for
uint8_t abs_control_limit; // Limit to the correction
uint8_t abs_control_error_limit; // Limit to the accumulated error
} pidProfile_t;
#ifndef USE_OSD_SLAVE