1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Remove custom defaults and enable features on boot (#13216)

* Remove custom defaults

* Fixes per review

* Fixes per review (thanks ledvinap)

* Fix copy pasta
This commit is contained in:
Mark Haslinghuis 2023-12-17 07:58:15 +01:00 committed by GitHub
parent 43c645a006
commit 65aaf732f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 18 deletions

View file

@ -280,7 +280,10 @@ static const char *mcuTypeNames[] = {
"AT32F435"
};
static const char *configurationStates[] = { "UNCONFIGURED", "CUSTOM DEFAULTS", "CONFIGURED" };
static const char *configurationStates[] = {
[CONFIGURATION_STATE_UNCONFIGURED] = "UNCONFIGURED",
[CONFIGURATION_STATE_CONFIGURED] = "CONFIGURED"
};
typedef enum dumpFlags_e {
DUMP_MASTER = (1 << 0),