Fixed missing extern on throttleBoost (#5549)

This commit is contained in:
Andrey Mironov 2018-03-26 23:01:25 +03:00 committed by GitHub
parent 83e614c139
commit 9cf0eca620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -145,5 +145,5 @@ void pidInit(const pidProfile_t *pidProfile);
void pidCopyProfile(uint8_t dstPidProfileIndex, uint8_t srcPidProfileIndex);
bool crashRecoveryModeActive(void);
FAST_RAM float throttleBoost;
pt1Filter_t throttleLpf;
extern float throttleBoost;
extern pt1Filter_t throttleLpf;