|
|
const uint32_t | fConfigValueLeaf = 0x01 |
| | Value is a leaf.
|
| |
|
const uint32_t | fConfigReadOnly = 0x02 |
| | Variable is read-only.
|
| |
|
const uint32_t | fConfigModified = 0x04 |
| | Variable has been modified, but not yet saved.
|
| |
|
const uint32_t | fConfigHidden = 0x08 |
| | Not visible to configuration web server display.
|
| |
|
const uint32_t | fConfigNoSave = 0x10 |
| | Do not save to flash memory when save functions are called.
|
| |
|
const uint32_t | fConfigNoObscure = 0x20 |
| | Do not obscure the value.
|
| |
|
const uint32_t | fConfigNeedReboot = 0x40 |
| | System reboot required for changes to take effect.
|
| |
|
const uint32_t | fConfigNoReload = 0x80 |
| | Disable reloading value from flash during a call to ReloadFromFlash.
|
| |
|
const uint32_t | fConfigDetached = 0x100 |
| | Disable reloading value from flash during a call to ReloadFromFlash.
|
| |
|
const uint32_t | fConfigIsDefault = 0x200 |
| | Value is unchanged from the default, i.e. wes never set.
|
| |
|
const uint32_t | fMaskDoingSave = 0x40000000 |
| | We're currently executing a config save to non-volatile storage.
|
| |
Specifies the characteristics of a configuration variable, such as read-only, hidden, etc.