cli application for managing nodes
Project description
inet_nm - INET Node Manager
INET Node Manager (inet_nm) is a comprehensive suite of command-line tools designed to streamline the management of multiple USB-based embedded development kits (also known as nodes or boards). This tool addresses a common challenge faced by many teams - keeping track of multiple hardware variants and efficiently running tests across these platforms.
In the context of managing a large variety of boards such as Nucleo boards, SAM XPro, ESPs and more, inet_nm comes into play by providing functionalities like:
- Tracking currently plugged-in boards and previously connected boards
- Running scripts on individual boards with lockfiles to prevent conflicts
- Maintaining board information and managing new boards with minimal overhead
- Offering a tmux session for interactive control and automatically releasing the node on session close
- Identifying boards by their features
All these features are designed to make managing numerous development boards more manageable and efficient, particularly for teams maintaining large open-source projects like RIOT OS.
Installation
As a developer or single user
You can install inet_nm via pip or pipx (recommended to use a venv):
pip install inet-nm
On a shared computer for CI
If you have one computer where many different users may want to access the boards it may be better to setup for all users.
First change the config dir to a shared path (by default we select /etc/environment
):
sudo sed -i '/NM_CONFIG_DIR/d' /etc/environment && echo 'NM_CONFIG_DIR=/etc/inet-nm' | sudo tee -a /etc/environment
Then install with pip system-wide
sudo pip install inet-nm
Now all users should be able to access the cli functions. Note that sudo
will
be needed to make any changes such as commissioning boards or updating board
names.
Usage
Detailed examples get generated during tests by running tox -e examples
.
Below is the usage for each of the command-line applications included in inet_nm:
inet-nm-update-from-os
This command is used to cache a list of boards and features. The default commands are compatible with RIOT OS but can be overridden for other systems.
$ inet-nm-update-from-os -h
usage: inet-nm-update-from-os [-h] [-c CONFIG] [-i BOARD_INFO] [-f BOARD_FEATURES] [-n BOARD_ENV_VAR] basedir
Cache a list of boards
positional arguments:
basedir Path to the board path directory
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
Path to the config dir
-i BOARD_INFO, --board-info BOARD_INFO
Command to get board info, defaults to 'make info-boards'
-f BOARD_FEATURES, --board-features BOARD_FEATURES
Command to get board features, defaults to 'make info-features-provided'
-n BOARD_ENV_VAR, --board-env-var BOARD_ENV_VAR
The env var to indicate the board name for features provided, defaults to 'BOARD'
inet-nm-update-commissioned
This command is used to update commissioned features, usually after
inet-nm-update-from-os
is called.
$ inet-nm-update-commissioned -h
usage: inet-nm-update-commissioned [-h] [-c CONFIG]
inet-nm-commission
This is an interactive prompt to new commission USB boards.
$ inet-nm-commission -h
usage: inet-nm-commission [-h] [-c CONFIG] [-b BOARD] [-n]
inet-nm-check
This command is used to check the list of boards given some conditions.
$ inet-nm-check -h
usage: inet-nm-check [-h] [-c CONFIG] [-f FEAT_FILTER [FEAT_FILTER ...]] [-a] [-m] [-e FEAT_EVAL] [-u] [-s] [--show-features]
Environment Variables
When executing a script or running interactively, env vars are available:
NM_IDX: Index of the node.
NM_UID: Unique ID of the node.
NM_SERIAL: Serial number of the node.
NM_BOARD: Board of the node.
NM_PORT: Port of the node.
There is also an environment variable to specify the default configuration directory.
NM_CONFIG_DIR
inet-nm-exec
This command is used to send execute a command or script. It will block the nodes until it is finished.
$ inet-nm-exec -h
usage: inet-nm-exec [-h] [-t TIMEOUT] [-c CONFIG] [-f FEAT_FILTER [FEAT_FILTER ...]] [-a] [-m] [-e FEAT_EVAL] [-u] [-s] cmd
inet-nm-tmux
This command is used to manage nodes in a tmux session. It will block the nodes until the session is over.
inet-nm-tmux -h
usage: inet-nm-tmux [-h] [-w] [-t TIMEOUT] [-x CMD] [-c CONFIG] [-f FEAT_FILTER [FEAT_FILTER ...]] [-a] [-m] [-e FEAT_EVAL] [-u] [-s]
inet-nm-from-uid
This command finds the tty of a node given the UID. This is useful if a node gets reconnected during an interactive session.
$ inet-nm-tty-from-uid -h
usage: inet-nm-tty-from-uid [-h] [-c CONFIG] uid
Example Workflow
Up-to-date examples are available at docs/cli-example.md
.
- First update the boards list in the cache to allow for autocomplete and features.
$ inet-nm-update-from-os RIOT/examples/hello-world/
Getting features_provided for acd52832
Getting features_provided for adafruit-clue
...
Getting features_provided for z1
Getting features_provided for zigduino
Updated /home/weiss/.config/inet_nm/board_info.json
- Then plug in a new board, or many new boards and commission them. Note that you can use autocomplete to help select the board name.
$ inet-nm-commission
Found 3 saved nodes in ~/.config/inet_nm
[?] Select the node: /dev/ttyACM1 Atmel Corp. Xplained Pro board debugger and programmer ATML2769041800000967
> /dev/ttyACM1 Atmel Corp. Xplained Pro board debugger and programmer ATML2769041800000967
/dev/ttyACM0 STMicroelectronics ST-LINK/V2.1 066DFF545150898367074730
Select board name for Atmel Corp. Xplained Pro board debugger and programmer
> saml1
saml10-xpro saml11-xpro
> saml11-xpro
Updated /home/user/.config/inet_nm/nodes.json
- Check to see what unused, connected board are available.
$ inet-nm-check
{
"b-l072z-lrwan1": 2,
"esp32-wroom-32": 1,
"frdm-kw41z": 1,
"nucleo-l452re": 1,
"remote-revb": 1,
"saml11-xpro": 1
}
- Prepare a board selection to use only one board of each type that have a given feature.
$ inet-nm-check -f bootloader_stm32 -s
{
"b-l072z-lrwan1": 1,
"nucleo-l452re": 1
}
- Interactively open a terminal to those boards.
Note, tmux can enable synced panes with
:setw synchronize-panes
.
$ inet-nm-tmux -f bootloader_stm32 -s
$ printenv | grep NM_
NM_BOARD=nucleo-l452re
NM_SERIAL=066AFF515055657867195125
NM_UID=328c4b667b4689b077436c385fc55a66
NM_PORT=/dev/ttyACM0
NM_IDX=0
───────────────────────────────────────
$ printenv | grep NM_
NM_BOARD=b-l072z-lrwan1
NM_SERIAL=066CFF495351677867143305
NM_UID=d1b3355a0e68fbf042a033ff3f222334
NM_PORT=/dev/ttyACM3
NM_IDX=1
- While the terminal is still open, run another script. This will not use the boards that have been used for interactive session.
$ inet-nm-exec "echo NM_BOARD=\$NM_BOARD"
NODE:0:BOARD:frdm-kw41z: NM_BOARD=frdm-kw41z
NODE:1:BOARD:saml11-xpro: NM_BOARD=saml11-xpro
NODE:2:BOARD:remote-revb: NM_BOARD=remote-revb
NODE:3:BOARD:esp32-wroom-32: NM_BOARD=esp32-wroom-32
NODE:4:BOARD:b-l072z-lrwan1: NM_BOARD=b-l072z-lrwan1
FAQs
What is the limit to the amount of USB devices I can have at a single time?
The maximum number of USB devices you can connect to a system is influenced by several factors:
-
USB Standard Limit: USB architecture technically supports up to 127 devices, including hubs and the host controller.
-
USB Endpoints: Each USB device communicates using "endpoints," and there's a limit to how many can be addressed by a single USB controller. Devices can use multiple endpoints, so reaching the endpoint limit might occur before hitting the 127-device limit.
-
Bandwidth: USB controllers have finite bandwidth. High-throughput devices like webcams or external hard drives consume more bandwidth than simpler devices like keyboards. Overloading bandwidth can prevent device recognition.
-
Power Constraints: USB ports deliver power. Connecting many devices, especially without externally powered hubs, can exceed the power supply capability, leading to malfunctions.
-
Kernel Configuration: Linux kernels have parameters determining how many USB devices they handle. Default settings might limit the number of usable devices.
-
Driver Conflicts: Device drivers can sometimes conflict or not handle a large number of connected devices gracefully.
-
Hardware Limitations: Motherboards and USB controllers have design constraints. High-end boards might support more devices than budget ones.
In practice, while the USB standard allows many devices, real-world constraints like power, bandwidth, and hardware often reduce this number.
Powered USB hubs solve the power problem. Some dev kits take up lots of bandwidth resources (such as atmel based boards or the newer nrf dev kits). This is due to isochronous bandwidth reservations. Some testing shows a USB controller can be saturated with as few as 7 boards.
Otherwise, there is a limit of not only endpoints but also from the xHCI
allowing a maximum of 32 in most cases.
This can be achieved with ESP32 dev kits since they don't take much bandwidth.
Extra USB controller hardware can help with these issues but at some point either the server needs to become more "distributed" or boards should be remotely removed via hub power control and only a fraction of boards would be active at a given moment.
License
This project is licensed under the terms of the MIT license. See the LICENSE file.
For any questions or contributions, please refer to the issues tab or the contributing guide.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file inet-nm-0.0.8.tar.gz
.
File metadata
- Download URL: inet-nm-0.0.8.tar.gz
- Upload date:
- Size: 59.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5520d3a21836fc9010e6796531619c717f9a6ae2dbe0341110a276cb63847a06 |
|
MD5 | 4d0448e0db828bfae37060e2a7a9d2b8 |
|
BLAKE2b-256 | 5865ff69e60017f6e3399bc8c652f7b282a765a406338733e4f9a6a6e1e80492 |
File details
Details for the file inet_nm-0.0.8-py3-none-any.whl
.
File metadata
- Download URL: inet_nm-0.0.8-py3-none-any.whl
- Upload date:
- Size: 34.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c75036df88d9252997816c3703afcd050db538cc96cffa527f1baff247898426 |
|
MD5 | 66f0430e9bd50b17db9e0e0f35e2085c |
|
BLAKE2b-256 | 12c0c15a8b9f22eed18f6b16e03f2064e818f8749015d72c41601ecec73b579f |