Put each PID in its own .c file

This commit is contained in:
Martin Budden 2016-08-04 09:02:31 +01:00 committed by borisbstyle
parent 4f49ae7370
commit e9545563d7
1 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,9 @@ extern biquadFilter_t dtermFilterNotch[3];
extern bool dtermNotchInitialised;
extern bool dtermBiquadLpfInitialised;
// PIDweight is a scale factor for PIDs which is derived from the throttle and TPA setting, and 100 = 100% scale means no PID reduction
uint8_t PIDweight[3];
void initFilters(const pidProfile_t *pidProfile);
float getdT(void);