From bf780cd6be00a6c16ca2f5d77b9c724fa2b10da6 Mon Sep 17 00:00:00 2001 From: Martin Budden Date: Mon, 25 Jul 2016 08:28:07 +0100 Subject: [PATCH] Reserved feature bits for v3.1 features so they are consistent with iNav --- src/main/config/config.h | 2 ++ src/main/io/beeper.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/config/config.h b/src/main/config/config.h index b18febe8cd..b97ac6b45b 100644 --- a/src/main/config/config.h +++ b/src/main/config/config.h @@ -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); diff --git a/src/main/io/beeper.h b/src/main/io/beeper.h index b4ed924130..ed02aee30a 100644 --- a/src/main/io/beeper.h +++ b/src/main/io/beeper.h @@ -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;