CLI and Python client for host-side of json based serial communication with embedded device bridge.
Project description
Shuttle
shuttle is a Typer-based command-line interface & python library for interacting with the ESP32-C5 devboard over its NDJSON serial protocol. The tool is packaged as lr-shuttle for PyPI distribution and exposes high-level helpers for common workflows such as probing firmware info, querying protocol metadata, and issuing TiMo SPI sequences.
Installation
python3 -m pip install lr-shuttle
The package supports Python 3.11 and later. When working from this repository you can install it in editable mode:
make -C host dev
Connecting to the Devboard
- The CLI talks to the board over a serial device supplied via
--portor theSHUTTLE_PORTenvironment variable (e.g.,/dev/ttyUSB0). - Default baud rate is
921600with a2sread timeout. Both can be overridden using--baudand--timeout. - Use
--log SERIAL.logto capture raw RX/TX NDJSON lines with UTC timestamps for later inspection.
Core Commands
| Command | Description |
|---|---|
shuttle ping |
Sends a ping command to fetch firmware/protocol metadata. |
shuttle get-info |
Calls get.info and pretty-prints the returned capability snapshot. |
shuttle spi-cfg [options] |
Queries or updates the devboard SPI defaults (wraps the spi.cfg protocol command). |
shuttle uart-cfg [options] |
Queries or updates the devboard UART defaults (wraps the uart.cfg protocol command). |
shuttle uart-tx [payload] |
Transmits bytes over the devboard UART (wraps the uart.tx protocol command). |
shuttle flash --port /dev/ttyUSB0 |
Programs the ESP32-C5 devboard using the bundled firmware artifacts. |
SPI Configuration Workflow
- Run
shuttle spi-cfg --port /dev/ttyUSB0with no extra flags to fetch the current board-level SPI defaults (the response mirrors the firmware’sspiobject). - Provide overrides such as
--hz 1500000 --clock-phase trailingto persist new defaults in the device’s NVS store. String arguments are case-insensitive; the CLI normalizes them to the lowercase values expected by the firmware. - If you need to push a raw JSON document (e.g., the sample in
src/spi.cfg), pipe it through a future send-file helper orscreen/catdirectly;spi-cfgitself focuses on structured flag input.
UART Configuration Workflow
- Use
shuttle uart-cfg --port /dev/ttyUSB0with no overrides to dump the persisted UART defaults (baudrate,stopbits,parity). - Supply
--baudrate,--stopbits, or--parity(acceptsn/none,e/even,o/odd) to persist new values. Arguments are validated client-side to match the firmware’s accepted ranges (baudrate 1.2 k–4 M, stopbits 1–2). - Like the SPI helper, UART updates are persisted to the device’s NVS region, so you only need to run the command when changing settings.
UART Transmission
shuttle uart-tx [HEX] --port /dev/ttyUSB0forwards a hex-encoded payload to the devboard using theuart.txprotocol command. The CLI trims whitespace/underscores and validates the string before sending.- To avoid manual hex encoding, pass
--text "Hello"(optionally with--newline) to send UTF-8 text,--file payload.binto transmit the raw bytes of a file, or provide-as the argument to read from stdin. Exactly one payload source can be used per invocation. - Use
--uart-portif a future firmware exposes multiple UART instances; otherwise the option can be omitted and the default device UART is used. - Responses echo the number of bytes accepted by the firmware, matching the
nfield returned byuart.tx.
Flashing Bundled Firmware
shuttle flash --port /dev/ttyUSB0invokesesptool.pyunder the hood and writes the bundled ESP32-C5 firmware (bootloader, partitions, and application images) to the selected device. Pass--erase-firstto issue a chip erase before programming.- Firmware bundles live under
shuttle/firmware/<board>inside the Python package. Runmake -f Makefile.arduino arduino-pythonfrom the repo root after compiling with Arduino CLI to refresh the packaged binaries andmanifest.jsonfor distribution builds. The helper also copiesboot_app0.binfrom the ESP-IDF core (needed for the USB CDC-on-boot option) so the CLI uses the same flashing layout asarduino-cli upload. - Use
--board <name>if additional bundles are added; the command enumerates available bundles automatically and validates the provided identifier.
Sequence Integrity Checks
Every device message carries a monotonically increasing seq counter emitted by the firmware transport itself. Shuttle enforces sequential integrity both within multi-transfer operations and across invocations when requested:
- During a command, any gap in response/event sequence numbers raises a
ShuttleSerialError, helping you catch dropped frames immediately. - Pass
--seq-meta /path/to/seq.metato persist the last observed sequence number. Subsequent Shuttle runs expect the very nextseqvalue; if a gap is detected (for example because the device dropped messages while Shuttle was offline), the CLI exits with an error detailing the missing value. - The metadata file stores a single integer. Delete it (or point
--seq-metato another location) if the device was power-cycled and its counter reset.
Logging and Diagnostics
--log FILEappends every raw NDJSON line (RX and TX) along with an ISO-8601 timestamp. This is useful for post-run audits or attaching transcripts to bug reports.- Combine
--logwith--seq-metato maintain both a byte-perfect trace and an audit trail of sequence continuity. - Rich panels highlight non-
okresponses and include firmware error codes returned by the device, making it straightforward to spot invalid arguments or transport failures.
Environment Tips
- Export
SHUTTLE_PORTin your shell profile to avoid typing--portfor each command. - For scripted flows, prefer
shuttle timo read-regandshuttle timo nophelpers instead of manually streaming raw JSON—they take care of command IDs, transfer framing, and error presentation. - Use
make -C host testto run the CLI unit tests and verify local changes before publishing to PyPI.
TiMo SPI Commands
Commands implementing the SPI protocol as described at docs.lumenradio.io/timotwo/spi-interface.
| Command | Description |
|---|---|
shuttle timo nop |
Issues a single-frame TiMo NOP SPI transfer through the devboard. |
shuttle timo read-reg --addr 0x05 --length 2 |
Performs the two-phase TiMo register read sequence and decodes the resulting payload/IRQ flags. |
shuttle timo write-reg --addr 0x05 --data cafebabe |
Performs the two-phase TiMo register write sequence to write bytes to a register. |
shuttle timo read-dmx --length 12 |
Reads the latest received DMX values from the TiMo device using a two-phase SPI sequence. |
shuttle timo update-fw TIMO.cci --port /dev/ttyUSB0 |
Streams a TiMo .cci firmware image via FW_BLOCK commands (requires SPI ≤ 2 MHz and ≥ 255-byte transfers). |
All commands respect the global options declared on the root CLI (--log, --seq-meta, --port, etc.). Rich tables are used to render human-friendly summaries of responses and decoded payloads.
TiMo Register Read Example
To read bytes from a TiMo register, use the read-reg command. I.e. to read the device name:
$ shuttle timo read-reg --addr 0x36 --length 12
TiMo read-reg
Status OK
Command spi.xfer (payload phase)
RX 00 48 65 6c 6c 6f 20 57 6f 72 6c 64 00
IRQ level {'level': 'low'}
TiMo read-reg
Address 0x36
Length 12
Data 48 65 6c 6c 6f 20 57 6f 72 6c 64 00
IRQ (command) 0x00
IRQ (payload) 0x00
Command RX 00
Payload RX 00 48 65 6c 6c 6f 20 57 6f 72 6c 64 00
TiMo Register Write Example
To write bytes to a TiMo register, use the write-reg command. I.e. to set the device name to Hello World:
shuttle timo write-reg --addr 0x36 --data 48656c6c6f20576f726c6400 --port /dev/ttyUSB0
--addrspecifies the register address (decimal or 0x-prefixed, 0-63)--datais a hex string of bytes to write (1-32 bytes)--portis your serial device
The command will print a summary table with the address, data written, and IRQ flags for each phase. If bit 7 of the IRQ flags is set, the sequence should be retried per the TiMo protocol.
TiMo DMX Read Example
Read the latest received DMX values from the window set up by the DMX_WINDOW register:
shuttle timo read-dmx --length 12 --port /dev/ttyUSB0
This will print a summary table with the length, data bytes (hex), and IRQ flags for each phase. If bit 7 of the IRQ flags is set, the sequence should be retried per the TiMo protocol.
--lengthspecifies the number of DMX bytes to read (1 - max_transfer_bytes)--portis your serial device
TiMo Firmware Update
Use shuttle timo update-fw to push official .cci images (for example timotwo-fx-b50f26ad.cci; the companion .hex is provided for reference only) through the Shuttle bridge without touching an external programmer:
shuttle timo update-fw timotwo-fx-b50f26ad.cci --port /dev/ttyUSB0
- The command first checks
spi_caps.max_transfer_bytesand the current SPI clock. Firmware updates require at least 255 bytes perspi.xfercall and a clock ≤ 2 MHz. Runshuttle spi-cfg --hz 2000000(or lower) if the persisted setting is faster. - Shuttle enables SPI, sets TiMo into UPDATE_MODE by writing
0x40to CONFIG, waits for the IRQ reboot window (0.6 s), and verifies bit 7 of STATUS before streaming data. .ccifiles contain a 4-byte header followed by 272-byte chunks. Because the TiMo FW loader accepts at most 255 contiguous bytes, each chunk is split into oneFW_BLOCK_CMD_1transfer (0x8E + 254 bytes) and oneFW_BLOCK_CMD_2transfer (0x8F + 18 bytes).- The first chunk after the header carries metadata. After every 16 data chunks the device writes flash internally, so the CLI pauses for
--flush-wait-ms(defaults to 500 ms) before continuing. When the whole image has been sent it waits--final-wait-ms(defaults to 1000 ms) to let TiMo finalize the update. - Once STATUS clears UPDATE_MODE the command reads the VERSION register, prints FW/HW revisions, and confirms completion. If any step fails (IRQ bit 7, transport error, malformed
.cci) the CLI aborts with a helpful message.
Tip: combine --flush-wait-ms 0 and --final-wait-ms 0 with a lab DUT when replaying the same firmware repeatedly, but keep the defaults when programming production hardware to honour the vendor timing guidelines.
Using the Library from Python
Use the transport helpers for HIL tests with explicit request→response pairing:
from shuttle.serial_client import NDJSONSerialClient
from shuttle import timo
with NDJSONSerialClient("/dev/ttyUSB0") as client:
# Fire a TiMo read-reg using the async API
commands = timo.read_reg_sequence(address=0x05, length=2)
responses = [client.send_command("spi.xfer", cmd).result(timeout=1.0) for cmd in commands]
print("Command RX:", responses[0]["rx"])
print("Payload RX:", responses[1]["rx"])
Legacy helpers (spi_xfer, ping, etc.) remain for simple sequential calls; prefer send_command when you need explicit request→response control.
Parsing registers with REGISTER_MAP
REGISTER_MAP in shuttle.timo documents the bit layout of TiMo registers. Example: read the VERSION register (0x10) and decode firmware/hardware versions.
from shuttle.serial_client import NDJSONSerialClient
from shuttle import timo
def read_register(client, reg_meta):
addr = reg_meta["address"]
length = reg_meta.get("length", 1)
seq = timo.read_reg_sequence(addr, length)
responses = [client.send_command("spi.xfer", cmd).result(timeout=1.0) for cmd in seq]
# The payload frame is in the second response's RX field
rx_payload = bytes.fromhex(responses[1]["rx"])
return rx_payload[1:] # skip IRQ flags byte
with NDJSONSerialClient("/dev/ttyUSB0") as client:
reg_meta = timo.REGISTER_MAP["VERSION"]
version_bytes = read_register(client, reg_meta)
fw_version = timo.slice_bits(version_bytes, *reg_meta["fields"]["FW_VERSION"]["bits"])
hw_version = timo.slice_bits(version_bytes, *reg_meta["fields"]["HW_VERSION"]["bits"])
print(f"VERSION: FW={fw_version:#x} HW={hw_version:#x}")
Use the field metadata in timo.REGISTER_MAP to interpret other registers (e.g., check REGISTER_MAP[0x01]["fields"] for status flags).
More examples can be found in the examples directory.
Async-style Command and Event Handling
NDJSONSerialClient now dispatches in a background reader thread and exposes futures so you can fan out work without changing the client for new ops:
send_command(op, params)returns aFuturethat resolves to the matching response or raises on timeout/sequence gap. You can issue multiple commands back-to-back and wait later.register_event_listener("ev.name")returns a subscription whose.next(timeout=…)yields each event payload; multiple listeners can subscribe to the same event (e.g., IRQ and DMX streams).
Example HIL sketch:
client = NDJSONSerialClient(port, baudrate=DEFAULT_BAUD, timeout=DEFAULT_TIMEOUT)
irq_sub = client.register_event_listener("spi.irq")
cmd_future = client.send_command("timo.read-reg", {"address": 0x05, "length": 1})
# Wait for either side as your test requires
reg_resp = cmd_future.result(timeout=1)
irq_event = irq_sub.next(timeout=1)
Events continue to emit until you close the subscription or client, so you can assert on multiple DMX frames or IRQ edges without recreating listeners.
Production Test SPI Commands
| Command | Description |
|---|---|
shuttle prodtest reset |
Reset GPIO pins, IRQ pin and Radio |
shuttle prodtest ping |
Send '+' and expect '-' to verify SPI link |
shuttle prodtest io-self-test |
Perform GPIO self-test on pins given as argument |
shuttle prodtest antenna |
Select antenna |
shuttle prodtest continuous-tx |
Continuous transmitter test |
shuttle prodtest hw-device-id |
Read the 8-byte HW Device ID |
shuttle prodtest serial-number [--value HEX] |
Read or write the 8-byte serial number |
shuttle prodtest config [--value HEX] |
Read or write the 5-byte config payload |
shuttle prodtest erase-nvmc HW_ID |
Erase NVMC if the provided 8-byte HW ID matches |
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lr_shuttle-0.2.9.tar.gz.
File metadata
- Download URL: lr_shuttle-0.2.9.tar.gz
- Upload date:
- Size: 744.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee1e015e98b18665c0c8e7ef92f14c2aa4c39189fe867e9c24cd0c0401c93f64
|
|
| MD5 |
d833514a94bfbfe5250a48559988a021
|
|
| BLAKE2b-256 |
7ce3e8c024aad1c8b1e9368966baf66292af8ee17a26026efcadd4a42d7154c7
|
File details
Details for the file lr_shuttle-0.2.9-py3-none-any.whl.
File metadata
- Download URL: lr_shuttle-0.2.9-py3-none-any.whl
- Upload date:
- Size: 726.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9356ce58c948efe5a889058b5cbc35821df1f1ebc13912531f88f2056efac7fc
|
|
| MD5 |
0aba5227216236e40785aa39dcf90131
|
|
| BLAKE2b-256 |
eff52eeab3312265a34723a979fa301ddada168ea404468d9808453df50400c0
|