1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 09:45:37 +03:00

Make lookupTableThrottleLimitType an extern variable (#13204)

This commit is contained in:
Ivan Efimov 2023-12-08 15:37:33 -06:00 committed by GitHub
parent 380d39e570
commit d3830b6b34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 12 deletions

View file

@ -375,11 +375,10 @@ static const char * const lookupOverclock[] = {
};
#endif
static const char * const lookupTableThrottleLimitType[] = {
const char * const lookupTableThrottleLimitType[] = {
"OFF", "SCALE", "CLIP"
};
#ifdef USE_GPS_RESCUE
static const char * const lookupTableRescueSanityType[] = {
"RESCUE_SANITY_OFF", "RESCUE_SANITY_ON", "RESCUE_SANITY_FS_ONLY"