Enumeration Management¶
The Simple Management Protocol (SMP) Enumeration Management group.
GroupCountRequest
¶
Bases: ReadRequest
Read the number of SMP server groups.
Count of supported groups returns the total number of SMP command groups that a device supports.
Source code in smp/enumeration_management.py
GroupCountResponse
¶
Bases: ReadResponse
SMP group count response.
Source code in smp/enumeration_management.py
count: int
instance-attribute
¶
Contains the total number of supported SMP groups on the device.
ListOfGroupsRequest
¶
ListOfGroupsResponse
¶
Bases: ReadResponse
SMP group list response.
Source code in smp/enumeration_management.py
groups: Tuple[smphdr.GroupIdField, ...]
instance-attribute
¶
Contains a list of the supported SMP group IDs on the device.
GroupIdRequest
¶
Bases: ReadRequest
List a SMP group by index.
Fetch single group ID command allows listing the group IDs of supported SMP groups on the device, one by one.
Source code in smp/enumeration_management.py
index: int | None = None
class-attribute
instance-attribute
¶
Contains the (0-based) index of the group to return information on, can be omitted to return the first group's details.
GroupIdResponse
¶
Bases: ReadResponse
SMP group at index response.
Source code in smp/enumeration_management.py
GroupDetailsRequest
¶
Bases: ReadRequest
Request the details of the supported SMP groups.
Details on supported groups command allows fetching details on each supported SMP group, such as the name and number of handlers. A device can specify an allow list of groups to return details on or details on all groups can be returned.
This command is optional, it can be enabled using
CONFIG_MCUMGR_GRP_ENUM_DETAILS
. The optional name and number of handlers
can be enabled/disabled with CONFIG_MCUMGR_GRP_ENUM_DETAILS_NAME
and
CONFIG_MCUMGR_GRP_ENUM_DETAILS_HANDLERS
.
Source code in smp/enumeration_management.py
groups: Tuple[smphdr.GroupIdField, ...] | None = None
class-attribute
instance-attribute
¶
Contains a list of the SMP group IDs to fetch details on.
If omitted, details on all supported groups will be returned.
GroupDetails
¶
Bases: BaseModel
Group Details
Source code in smp/enumeration_management.py
model_config = ConfigDict(extra='forbid', frozen=True)
class-attribute
instance-attribute
¶
id: smphdr.GroupIdField
instance-attribute
¶
The group ID of the SMP command group.
name: str | None = None
class-attribute
instance-attribute
¶
The name of the SMP command group.
handlers: int | None = None
class-attribute
instance-attribute
¶
The number of handlers that the SMP command group supports.
GroupDetailsResponse
¶
Bases: ReadResponse
SMP group details response.
Source code in smp/enumeration_management.py
groups: Tuple[GroupDetails, ...]
instance-attribute
¶
Contains a list of the requested SMP group details.
ENUM_MGMT_ERR
¶
Bases: IntEnum
Return codes for the enumeration management group.
Source code in smp/enumeration_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.
ERR_TOO_MANY_GROUP_ENTRIES = 2
class-attribute
instance-attribute
¶
Too many entries were provided.
ERR_INSUFFICIENT_HEAP_FOR_ENTRIES = 3
class-attribute
instance-attribute
¶
Insufficient heap memory to store entry data.
ENUM_MGMT_ERR_INDEX_TOO_LARGE = 4
class-attribute
instance-attribute
¶
Provided index is larger than the number of supported groups.
EnumManagementErrorV1
¶
EnumManagementErrorV2
¶
Bases: ErrorV2[ENUM_MGMT_ERR]
Error response to a enumeration management command.