Settings Management¶
The Simple Management Protocol (SMP) Settings Management group.
ReadSettingRequest
¶
Bases: ReadRequest
Read setting.
Source code in smp/settings_management.py
ReadSettingResponse
¶
Bases: ReadResponse
Read setting success response.
Source code in smp/settings_management.py
val: bytes
instance-attribute
¶
Binary string of the returned data.
Note that the underlying data type cannot be specified through this and must be known by the client.
max_size: int | None = None
class-attribute
instance-attribute
¶
The SMP server supports a smaller size than requested.
Will be set if the maximum supported data size is smaller than the maximum
requested data size, and contains the maximum data size which the device
supports, equivalent to CONFIG_MCUMGR_GRP_SETTINGS_NAME_LEN
.
WriteSettingRequest
¶
WriteSettingResponse
¶
DeleteSettingRequest
¶
Bases: WriteRequest
Delete setting.
Source code in smp/settings_management.py
name: str
instance-attribute
¶
The name of the setting to delete.
DeleteSettingResponse
¶
CommitSettingsRequest
¶
Bases: WriteRequest
Commit pending settings.
Commit settings command allows committing all settings that have been set but not yet applied on a device.
Source code in smp/settings_management.py
CommitSettingsResponse
¶
Bases: WriteResponse
Commit pending settings success response.
Source code in smp/settings_management.py
LoadSettingsRequest
¶
LoadSettingsResponse
¶
Bases: ReadResponse
Load settings from persistent storage success response.
Source code in smp/settings_management.py
SaveSettingsRequest
¶
SaveSettingsResponse
¶
Bases: WriteResponse
Save settings to persistent storage success response.
Source code in smp/settings_management.py
SETTINGS_MGMT_ERR
¶
Bases: IntEnum
Return codes for the settings management group.
Source code in smp/settings_management.py
OK = 0
class-attribute
instance-attribute
¶
No error, this is implied if there is no ret value in the response.
UNKNOWN = 1
class-attribute
instance-attribute
¶
Unknown error occurred.
KEY_TOO_LONG = 2
class-attribute
instance-attribute
¶
The provided key name is too long to be used.
KEY_NOT_FOUND = 3
class-attribute
instance-attribute
¶
The provided key name does not exist.
READ_NOT_SUPPORTED = 4
class-attribute
instance-attribute
¶
The provided key name does not support being read.
ROOT_KEY_NOT_FOUND = 5
class-attribute
instance-attribute
¶
The provided root key name does not exist.
WRITE_NOT_SUPPORTED = 6
class-attribute
instance-attribute
¶
The provided key name does not support being written.
DELETE_NOT_SUPPORTED = 7
class-attribute
instance-attribute
¶
The provided key name does not support being deleted.
SettingsManagementErrorV1
¶
SettingsManagementErrorV2
¶
Bases: ErrorV2[SETTINGS_MGMT_ERR]
Error response to a settings management command.