smp
implements serialization and deserialization of the Simple Management Protocol.
The SMP specification can be found here.
If you'd like a library that implements the serial (UART or USB), Bluetooth (BLE), and UDP transport layers for SMP, take a look at smpclient.
If you need an SMP CLI application to interact with device firmware, then try smpmgr.
smp
is distributed by PyPI and can be installed with poetry
, pip
, and other dependency managers.
Documentation is in the source code so that it is available to your editor. An online version is generated and available here.
Assumes that you've already setup your development environment.
- activate envr, the environment manager for bash, zsh, and PS:
. ./envr.ps1
- run
poetry install
when pulling in new changes - run
lint
after making changes - run
test
after making changes - add library dependencies with
poetry
:poetry add <my_new_dependency>
- add test or other development dependencies using poetry groups:
poetry add -G dev <my_dev_dependency>
- run tests for all supported python versions:
tox
poetry install
The venv
should be installed to .venv
.
envr supports bash, zsh, and PS in Linux, MacOS, and Windows. If you are using an unsupported shell, you can activate the
.venv
environment manually, usepoetry run
andpoetry shell
, and refer toenvr-default
for useful aliases.
. ./envr.ps1
To verify the installation, make sure that all of the tests are passing using these envr aliases:
lint
test
The pre-commit hook will run the linters but not the unit tests.
git config core.hooksPath .githooks