Skip to content

Settings Management

The Simple Management Protocol (SMP) Settings Management group.

ReadSettingRequest

Bases: ReadRequest

Read setting.

Source code in smp/settings_management.py
class ReadSettingRequest(smpmsg.ReadRequest):
    """Read setting."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.READ_WRITE_SETTING

    name: str
    """The name of the setting to read."""

    max_size: int | None = None
    """The maximum size of the data to read."""

name: str instance-attribute

The name of the setting to read.

max_size: int | None = None class-attribute instance-attribute

The maximum size of the data to read.

ReadSettingResponse

Bases: ReadResponse

Read setting success response.

Source code in smp/settings_management.py
class ReadSettingResponse(smpmsg.ReadResponse):
    """Read setting success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.READ_WRITE_SETTING

    val: bytes
    """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
    """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`.
    """

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

Bases: WriteRequest

Write setting.

Source code in smp/settings_management.py
class WriteSettingRequest(smpmsg.WriteRequest):
    """Write setting."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.READ_WRITE_SETTING

    name: str
    """The name of the setting to write."""

    val: bytes
    """Binary data to write."""

name: str instance-attribute

The name of the setting to write.

val: bytes instance-attribute

Binary data to write.

WriteSettingResponse

Bases: WriteResponse

Write setting success response.

Source code in smp/settings_management.py
class WriteSettingResponse(smpmsg.WriteResponse):
    """Write setting success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.READ_WRITE_SETTING

DeleteSettingRequest

Bases: WriteRequest

Delete setting.

Source code in smp/settings_management.py
class DeleteSettingRequest(smpmsg.WriteRequest):
    """Delete setting."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.DELETE_SETTING

    name: str
    """The name of the setting to delete."""

name: str instance-attribute

The name of the setting to delete.

DeleteSettingResponse

Bases: WriteResponse

Delete setting success response.

Source code in smp/settings_management.py
class DeleteSettingResponse(smpmsg.WriteResponse):
    """Delete setting success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.DELETE_SETTING

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
class CommitSettingsRequest(smpmsg.WriteRequest):
    """Commit pending settings.

    Commit settings command allows committing all settings that have been set
    but not yet applied on a device.
    """

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.COMMIT_SETTINGS

CommitSettingsResponse

Bases: WriteResponse

Commit pending settings success response.

Source code in smp/settings_management.py
class CommitSettingsResponse(smpmsg.WriteResponse):
    """Commit pending settings success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.COMMIT_SETTINGS

LoadSettingsRequest

Bases: ReadRequest

Load settings from persistent storage.

Source code in smp/settings_management.py
class LoadSettingsRequest(smpmsg.ReadRequest):
    """Load settings from persistent storage."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.LOAD_SAVE_SETTINGS

LoadSettingsResponse

Bases: ReadResponse

Load settings from persistent storage success response.

Source code in smp/settings_management.py
class LoadSettingsResponse(smpmsg.ReadResponse):
    """Load settings from persistent storage success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.LOAD_SAVE_SETTINGS

SaveSettingsRequest

Bases: WriteRequest

Save settings to persistent storage.

Source code in smp/settings_management.py
class SaveSettingsRequest(smpmsg.WriteRequest):
    """Save settings to persistent storage."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.LOAD_SAVE_SETTINGS

SaveSettingsResponse

Bases: WriteResponse

Save settings to persistent storage success response.

Source code in smp/settings_management.py
class SaveSettingsResponse(smpmsg.WriteResponse):
    """Save settings to persistent storage success response."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.SettingsManagement.LOAD_SAVE_SETTINGS

SETTINGS_MGMT_ERR

Bases: IntEnum

Return codes for the settings management group.

Source code in smp/settings_management.py
@unique
class SETTINGS_MGMT_ERR(IntEnum):
    """Return codes for the settings management group."""

    OK = 0
    """No error, this is implied if there is no ret value in the response."""

    UNKNOWN = 1
    """Unknown error occurred."""

    KEY_TOO_LONG = 2
    """The provided key name is too long to be used."""

    KEY_NOT_FOUND = 3
    """The provided key name does not exist."""

    READ_NOT_SUPPORTED = 4
    """The provided key name does not support being read."""

    ROOT_KEY_NOT_FOUND = 5
    """The provided root key name does not exist."""

    WRITE_NOT_SUPPORTED = 6
    """The provided key name does not support being written."""

    DELETE_NOT_SUPPORTED = 7
    """The provided key name does not support being deleted."""

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

Bases: ErrorV1

Error response to a settings management command.

Source code in smp/settings_management.py
class SettingsManagementErrorV1(smperr.ErrorV1):
    """Error response to a settings management command."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT

SettingsManagementErrorV2

Bases: ErrorV2[SETTINGS_MGMT_ERR]

Error response to a settings management command.

Source code in smp/settings_management.py
class SettingsManagementErrorV2(smperr.ErrorV2[SETTINGS_MGMT_ERR]):
    """Error response to a settings management command."""

    _GROUP_ID = smphdr.GroupId.SETTINGS_MANAGEMENT