From 972e0b28a9e5edc8d6ed9ab2698b1aa6c686fecf Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Fri, 2 Mar 2018 22:00:02 +1300 Subject: [PATCH] Increment firmware, MSP, EEPROM versions after 3.3.0. --- src/main/build/version.h | 2 +- src/main/config/config_eeprom.h | 2 +- src/main/interface/msp_protocol.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/build/version.h b/src/main/build/version.h index 2d4f19f94..7a4014322 100644 --- a/src/main/build/version.h +++ b/src/main/build/version.h @@ -21,7 +21,7 @@ #define FC_FIRMWARE_NAME "Betaflight" #define FC_VERSION_MAJOR 3 // increment when a major release is made (big new feature, etc) -#define FC_VERSION_MINOR 3 // increment when a minor release is made (small new feature, change etc) +#define FC_VERSION_MINOR 4 // increment when a minor release is made (small new feature, change etc) #define FC_VERSION_PATCH_LEVEL 0 // increment when a bug is fixed #define FC_VERSION_STRING STR(FC_VERSION_MAJOR) "." STR(FC_VERSION_MINOR) "." STR(FC_VERSION_PATCH_LEVEL) diff --git a/src/main/config/config_eeprom.h b/src/main/config/config_eeprom.h index 55499f8bd..ff4ac4216 100644 --- a/src/main/config/config_eeprom.h +++ b/src/main/config/config_eeprom.h @@ -20,7 +20,7 @@ #include #include -#define EEPROM_CONF_VERSION 168 +#define EEPROM_CONF_VERSION 169 bool isEEPROMContentValid(void); bool loadEEPROM(void); diff --git a/src/main/interface/msp_protocol.h b/src/main/interface/msp_protocol.h index 61f5b66b2..5cbcfd92c 100644 --- a/src/main/interface/msp_protocol.h +++ b/src/main/interface/msp_protocol.h @@ -59,7 +59,7 @@ #define MSP_PROTOCOL_VERSION 0 #define API_VERSION_MAJOR 1 // increment when major changes are made -#define API_VERSION_MINOR 37 // increment after a release, to set the version for all changes to go into the following release (if no changes to MSP are made between the releases, this can be reverted before the release) +#define API_VERSION_MINOR 38 // increment after a release, to set the version for all changes to go into the following release (if no changes to MSP are made between the releases, this can be reverted before the release) #define API_VERSION_LENGTH 2