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

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

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;