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

Added PIDweight to header file

This commit is contained in:
borisbstyle 2015-05-12 23:39:51 +02:00
parent 4ec28b8cce
commit f1a490b6ba

View file

@ -40,6 +40,7 @@ typedef struct pidProfile_s {
uint8_t P8[PID_ITEM_COUNT];
uint8_t I8[PID_ITEM_COUNT];
uint8_t D8[PID_ITEM_COUNT];
uint8_t PIDweight[PID_ITEM_COUNT];
float P_f[3]; // float p i and d factors for lux float pid controller
float I_f[3];