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

Allow inflight adjustment of pitch/roll (linked) and yaw PID settings.

This commit is contained in:
Dominic Clifton 2014-10-24 23:10:17 +01:00
parent 7548154d25
commit 2df976409d
3 changed files with 66 additions and 5 deletions

View file

@ -140,9 +140,15 @@ typedef enum {
ADJUSTMENT_THROTTLE_EXPO,
ADJUSTMENT_PITCH_ROLL_RATE,
ADJUSTMENT_YAW_RATE,
ADJUSTMENT_PITCH_ROLL_P,
ADJUSTMENT_PITCH_ROLL_I,
ADJUSTMENT_PITCH_ROLL_D,
ADJUSTMENT_YAW_P,
ADJUSTMENT_YAW_I,
ADJUSTMENT_YAW_D,
} adjustmentFunction_e;
#define ADJUSTMENT_FUNCTION_COUNT 6
#define ADJUSTMENT_FUNCTION_COUNT 12
typedef struct adjustmentConfig_s {
uint8_t adjustmentFunction;