Skip to content

Zephyr Management

The Simple Management Protocol (SMP) Zephyr Management group.

EraseStorageRequest

Bases: WriteRequest

Erase the storage area.

Source code in smp/zephyr_management.py
class EraseStorageRequest(smpmsg.WriteRequest):
    """Erase the storage area."""

    _GROUP_ID = smphdr.GroupId.ZEPHYR_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.ZephyrManagement.ERASE_STORAGE

EraseStorageResponse

Bases: WriteResponse

Success response to a storage area erase.

Source code in smp/zephyr_management.py
class EraseStorageResponse(smpmsg.WriteResponse):
    """Success response to a storage area erase."""

    _GROUP_ID = smphdr.GroupId.ZEPHYR_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.ZephyrManagement.ERASE_STORAGE

ZEPHYRBASIC_MGMT_ERR

Bases: IntEnum

Return codes for the Zephyr Management group.

Source code in smp/zephyr_management.py
@unique
class ZEPHYRBASIC_MGMT_ERR(IntEnum):
    """Return codes for the Zephyr Management group."""

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

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

    FLASH_OPEN_FAILED = 2
    """Opening of the flash area has failed."""

    FLASH_CONFIG_QUERY_FAIL = 3
    """Querying the flash area parameters has failed."""

    FLASH_ERASE_FAILED = 4
    """Erasing the flash area has failed."""

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.

FLASH_OPEN_FAILED = 2 class-attribute instance-attribute

Opening of the flash area has failed.

FLASH_CONFIG_QUERY_FAIL = 3 class-attribute instance-attribute

Querying the flash area parameters has failed.

FLASH_ERASE_FAILED = 4 class-attribute instance-attribute

Erasing the flash area has failed.

ZephyrManagementErrorV1

Bases: ErrorV1

Error response to a Zephyr Management command.

Source code in smp/zephyr_management.py
class ZephyrManagementErrorV1(smperr.ErrorV1):
    """Error response to a Zephyr Management command."""

    _GROUP_ID = smphdr.GroupId.ZEPHYR_MANAGEMENT

ZephyrManagementErrorV2

Bases: ErrorV2[ZEPHYRBASIC_MGMT_ERR]

Error response to a Zephyr Management command.

Source code in smp/zephyr_management.py
class ZephyrManagementErrorV2(smperr.ErrorV2[ZEPHYRBASIC_MGMT_ERR]):
    """Error response to a Zephyr Management command."""

    _GROUP_ID = smphdr.GroupId.ZEPHYR_MANAGEMENT