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:
parent
43c645a006
commit
65aaf732f9
5 changed files with 7 additions and 18 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue