OS Management¶
The Simple Management Protocol (SMP) OS Management group.
EchoWriteRequest
¶
Bases: WriteRequest
Echo back the provided string.
Source code in smp/os_management.py
d: str
instance-attribute
¶
String to echo.
EchoWriteResponse
¶
Bases: WriteResponse
Success response to an echo request.
Source code in smp/os_management.py
r: str
instance-attribute
¶
Echoed string.
ResetWriteRequest
¶
Bases: WriteRequest
Performs reset of system.
The device should issue response before resetting so that the SMP client
could receive information that the command has been accepted. By default,
this command is accepted in all conditions, however if the
CONFIG_MCUMGR_GRP_OS_RESET_HOOK
is enabled and an application registers a
callback, the callback will be called when this command is issued and can be
used to perform any necessary tidy operations prior to the module rebooting,
or to reject the reset request outright altogether with an error response.
For details on this functionality, see callbacks. # noqa: E501
Source code in smp/os_management.py
force: Literal[0, 1] | None = None
class-attribute
instance-attribute
¶
Force reset.
Normally the command sends an empty CBOR map as data, but if a previous reset attempt has responded with “rc” equal to MGMT_ERR_EBUSY then the following map may be sent to force a reset
ResetWriteResponse
¶
TaskStatisticsReadRequest
¶
TaskStatistics
¶
Bases: BaseModel
Task statistics.
Source code in smp/os_management.py
model_config = ConfigDict(extra='forbid', frozen=True)
class-attribute
instance-attribute
¶
prio: int
instance-attribute
¶
Task priority.
tid: int
instance-attribute
¶
Numeric task ID.
state: int
instance-attribute
¶
Numeric task state.
stkuse: int
instance-attribute
¶
Stack usage.
The unit is system dependent and in case of Zephyr this is number of 4 byte words.
stksize: int
instance-attribute
¶
Stack size.
The unit is system dependent and in case of Zephyr this is number of 4 byte words.
cswcnt: int
instance-attribute
¶
Number of context switches.
runtime: int
instance-attribute
¶
Runtime in ticks.
last_checkin: int
instance-attribute
¶
Set to 0 by Zephyr.
next_checkin: int
instance-attribute
¶
Set to 0 by Zephyr.
TaskStatisticsReadResponse
¶
Bases: ReadResponse
Task statistics response.
Source code in smp/os_management.py
tasks: Dict[str, TaskStatistics]
instance-attribute
¶
Task statistics map.
MemoryPoolStatisticsReadRequest
¶
MemoryPoolStatistics
¶
Bases: BaseModel
Memory pool statistics.
Source code in smp/os_management.py
model_config = ConfigDict(extra='forbid', frozen=True)
class-attribute
instance-attribute
¶
blksize: int
instance-attribute
¶
Size of the memory block in the pool.
nblks: int
instance-attribute
¶
Number of memory blocks in the pool.
nfree: int
instance-attribute
¶
Number of free memory blocks in the pool.
min: int
instance-attribute
¶
Lowest number of free blocks the pool reached during run-time.
MemoryPoolStatisticsReadResponse
¶
Bases: ReadResponse
The memory pools are accessed by name.
Source code in smp/os_management.py
model_config = ConfigDict(extra='allow', frozen=True)
class-attribute
instance-attribute
¶
DateTimeReadRequest
¶
DateTimeReadResponse
¶
Bases: ReadResponse
Response to a date and time request.
Source code in smp/os_management.py
datetime: str
instance-attribute
¶
DateTimeWriteRequest
¶
Bases: WriteRequest
Set the current date and time.
Source code in smp/os_management.py
datetime: str
instance-attribute
¶
DateTimeWriteResponse
¶
Bases: WriteResponse
Success response to a date and time request.
Source code in smp/os_management.py
MCUMgrParametersReadRequest
¶
MCUMgrParametersReadResponse
¶
Bases: ReadResponse
Success response to a MCU Manager parameters request.
Source code in smp/os_management.py
OSApplicationInfoReadRequest
¶
Bases: ReadRequest
Request information about the application running on the device.
Source code in smp/os_management.py
format: str | None = None
class-attribute
instance-attribute
¶
Format specifier of returned response.
Fields are appended in their natural ascending index order, not the order of characters that are received by the command.
Format specifiers:
* s
Kernel name
* n
Node name
* r
Kernel release
* v
Kernel version
* b
Build date and time (requires CONFIG_MCUMGR_GRP_OS_INFO_BUILD_DATE_TIME
)
* m
Machine
* p
Processor
* i
Hardware platform
* o
Operating system
* a
All fields (shorthand for all above options)
If this option is not provided, the s
Kernel name option will be used.
OSApplicationInfoReadResponse
¶
Bases: ReadResponse
Success response to an application information request.
Source code in smp/os_management.py
output: str
instance-attribute
¶
Text response including requested parameters.
BootloaderInformationReadRequest
¶
Bases: ReadRequest
Request bootloader information.
Source code in smp/os_management.py
query: str | None = None
class-attribute
instance-attribute
¶
Is string representing query for parameters.
With no restrictions how the query looks like as processing of query is left for bootloader backend. If there is no query, then response will return string identifying the bootloader.
MCUboot supports the query string,"mode". The response to mode is of type
MCUbootMode
.
MCUbootMode
¶
Bases: IntEnum
Source code in smp/os_management.py
UNKNOWN = -1
class-attribute
instance-attribute
¶
APPLICATION = 0
class-attribute
instance-attribute
¶
SWAP_USING_SCRATCH = 1
class-attribute
instance-attribute
¶
OVERWRITE_ONLY = 2
class-attribute
instance-attribute
¶
SWAP_WITHOUT_SCRATCH = 3
class-attribute
instance-attribute
¶
DIRECT_XIP_WITHOUT_REVERT = 4
class-attribute
instance-attribute
¶
DIRECT_XIP_WITH_REVERT = 5
class-attribute
instance-attribute
¶
RAM_LOADER = 6
class-attribute
instance-attribute
¶
MCUbootModeQueryResponse
¶
Bases: BaseModel
Response to a MCUboot mode query.
Source code in smp/os_management.py
BootloaderInformationReadResponse
¶
Bases: ReadResponse
Success response to a bootloader information request.
Source code in smp/os_management.py
bootloader: str
instance-attribute
¶
String identifying the bootloader. For MCUboot it will be "MCUboot".
response: MCUbootModeQueryResponse | Any | None = None
class-attribute
instance-attribute
¶
Response to “query”.
This is optional and may be left out in case when query yields no response,
SMP version 2 error code of OS_MGMT_ERR_QUERY_YIELDS_NO_ANSWER
is
expected. Response may have more than one parameter reported back or it may
be a map, that is dependent on bootloader backend and query.
OS_MGMT_RET_RC
¶
Bases: IntEnum
OS Management return codes.
Source code in smp/os_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.
INVALID_FORMAT = 2
class-attribute
instance-attribute
¶
The provided format value is not valid.
QUERY_YIELDS_NO_ANSWER = 3
class-attribute
instance-attribute
¶
Query was not recognized.
RTC_NOT_SET = 4
class-attribute
instance-attribute
¶
RTC is not set.
RTC_COMMAND_FAILED = 5
class-attribute
instance-attribute
¶
RTC command failed.