1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 12:25:20 +03:00

Reserved feature bits for v3.1 features so they are consistent with iNav

This commit is contained in:
Martin Budden 2016-07-25 08:28:07 +01:00
parent 750fb11d09
commit bf780cd6be
2 changed files with 3 additions and 1 deletions

View file

@ -54,6 +54,8 @@ typedef enum {
FEATURE_SUPEREXPO_RATES = 1 << 23,
FEATURE_OSD = 1 << 24,
FEATURE_VTX = 1 << 25,
FEATURE_RX_NRF24 = 1 << 26,
FEATURE_SOFTSPI = 1 << 27,
} features_e;
void latchActiveFeatures(void);

View file

@ -41,7 +41,7 @@ typedef enum {
BEEPER_USB, // Some boards have beeper powered USB connected
BEEPER_ALL, // Turn ON or OFF all beeper conditions
BEEPER_PREFERENCE, // Save prefered beeper configuration
BEEPER_PREFERENCE, // Save preferred beeper configuration
// BEEPER_ALL and BEEPER_PREFERENCE must remain at the bottom of this enum
} beeperMode_e;