Skip to main content

HARDWARIO Real Time Transfer Terminal Console

Project description

HARDWARIO Real Time Transfer Terminal Console

Main Release PyPI License Twitter

Overview

HARDWARIO Real Time Transfer Terminal Console (rttt) is a Python package that provides an interface for real-time data transfer using SEGGER J-Link RTT (Real-Time Transfer) technology. It enables efficient data communication between an embedded system and a host computer via RTT channels.

This package is particularly useful for debugging, logging, and real-time data visualization in embedded applications.

alt text

Features

  • Real-time communication with embedded devices via RTT.
  • Support for multiple RTT buffers (console and logger).
  • Adjustable latency for optimized readout.
  • J-Link support with configurable serial numbers, device types, and speeds.
  • Command-line interface (CLI) for quick and easy access.
  • Easy installation via PyPI.

Installation

To install the package, use:

pip install rttt

To verify the installation, run:

rttt --help

Usage

Basic Command

To start the RTT console:

rttt --device <DEVICE_NAME>

Available Options

Usage: rttt [OPTIONS]

  HARDWARIO Real Time Transfer Terminal Console.

Options:
  --version                  Show the version and exit.
  --serial SERIAL_NUMBER     J-Link serial number.
  --device DEVICE            J-Link Device name.
  --speed SPEED              J-Link clock speed in kHz. [default: 2000]
  --reset                    Reset application firmware.
  --address ADDRESS          RTT block address.
  --terminal-buffer INTEGER  RTT Terminal buffer index. [default: 0]
  --logger-buffer INTEGER    RTT Logger buffer index. [default: 1]
  --latency INTEGER          Latency for RTT readout in ms. [default: 50]
  --history-file PATH        Path to history file. [default: ~/.rttt_history]
  --console-file PATH        Path to console file. [default: ~/.rttt_console]
  --mcp / --no-mcp           Enable MCP server. [default: no-mcp]
  --mcp-listen TEXT           MCP server listen address [host:]port. [default: 127.0.0.1:8090]
  --substitutions / --no-substitutions
                             Enable template substitutions in terminal input.
                             [default: substitutions]
  --trust-shells             Trust shell substitutions in config without
                             interactive prompt (for CI/scripts).
  --help                     Show this message and exit.

Examples

Connect to a device (replace NRF52840_xxAA with your actual device name):

rttt --device NRF52840_xxAA

Use a specific J-Link serial number:

rttt --device NRF52840_xxAA --serial 123456789

Configuration File

RTTT supports configuration via .rttt.yaml files. All existing files are loaded and deep-merged, so you can keep user-wide defaults in your home directory and override specific keys per project. The load order, from lowest to highest priority, is:

  1. ~/.config/rttt.yaml — user defaults
  2. ~/.rttt.yaml — user defaults (alternative location)
  3. ./.rttt.yaml — project-specific overrides
  4. RTTT_* environment variables
  5. Command-line flags

Nested mappings (like substitutions:) merge per-key — a project config can add new substitutions without losing the ones defined in your home config, or override specific ones by name.

Example Configuration:

device: NRF9151_XXCA
console_file: "test.log"
substitutions:
  RTC_SET: "rtc set {{UTC_NOW}}"

With this configuration, simply running:

rttt

Input Substitutions

RTTT can expand {{NAME}} placeholders in commands you type in the terminal before they are sent to the device. This is handy for things like setting the current time on the device without typing it manually:

rtc set {{UTC_NOW}}

gets expanded to (example):

rtc set 2026/04/20 10:08:00

Built-in Substitutions

Placeholder Output Notes
{{UTC_NOW}} 2026/04/20 10:08:00 UTC, default format %Y/%m/%d %H:%M:%S
{{UTC_NOW:<fmt>}} e.g. 2026-04-20 Any strftime format, e.g. {{UTC_NOW:%Y-%m-%d}}
{{LOCAL_NOW}} 2026/04/20 12:08:00 Local time, same default format
{{LOCAL_NOW:<fmt>}} e.g. 12:08:00 Any strftime format
{{UNIX_NOW}} 1776636480 Unix timestamp (seconds), format is ignored

Placeholder names must be upper-case letters, digits, and underscores, and start with a letter or underscore.

Custom Substitutions

Define your own values in .rttt.yaml under the substitutions key. Values are strings and may reference other substitutions (built-in or custom):

substitutions:
  RTC_SET: "rtc set {{UTC_NOW}}"
  PROJECT: "nrf9151-demo"
  HEADER: "DEV={{PROJECT}} T={{UTC_NOW}}"

Then typing {{RTC_SET}} in the terminal sends e.g. rtc set 2026/04/20 10:08:00 to the device.

Custom names take precedence over built-ins, so you can override UTC_NOW with a fixed value if needed.

Multi-Line Substitutions

A substitution value may contain newlines. When the expanded text spans multiple lines, each line is sent as a separate input event to the device. This is useful for grouping a batch of commands under a single placeholder:

substitutions:
  CONFIG: |
    app config interval-sample 60
    app config interval-aggreg 300
    app config interval-report 1800
    {{RTC_SET}}

Typing {{CONFIG}} sends all five commands in order. Nested placeholders (like {{RTC_SET}} above) are expanded recursively before the fan-out.

Shell Substitutions

A substitution value can also be a shell command, evaluated lazily each time the placeholder is expanded:

substitutions:
  GIT_SHA:
    shell: "git rev-parse --short HEAD"
  BUILD_HEADER: "build={{GIT_SHA}} at {{UTC_NOW}}"

Options for a shell: entry:

Key Default Description
shell (required) Command passed to /bin/sh -c.
cwd current working directory Directory to run the command in. ~ is expanded.
multiline false If true, the full output is used (newlines in it cause the command to be split and sent as multiple lines to the device). If false, only the first line is used.

Commands have a 5 second timeout. On failure (non-zero exit, timeout, or missing binary), the placeholder is left in the text and a warning is logged.

Trust prompt. Because a .rttt.yaml in a project you didn't write could run commands on your machine, rttt asks for confirmation the first time it sees a new set of shell substitutions. The approval is cached in ~/.hardwario/rttt_allowed_shells as a hash of the command list plus the absolute config path — you only get asked again if the commands actually change. For non-interactive use (CI, scripts), pass --trust-shells to skip the prompt.

Enabling / Disabling

Substitutions are enabled by default, so built-ins like {{UTC_NOW}} work out of the box. Use --no-substitutions on the command line to disable them for a single session (for example if you actually need to send the literal text {{UTC_NOW}} to the device).

Errors

If a placeholder name is unknown, references itself (cycle), or the format string fails, the placeholder is left in the text as-is and a warning is written to ~/.hardwario/rttt.log. The command is still sent to the device so you don't lose keystrokes.

MCP Server (AI Integration)

RTTT includes a built-in Model Context Protocol (MCP) server that allows AI tools (Claude, Cursor, etc.) to interact with your embedded device via RTT.

MCP server is enabled by default. Start RTTT as usual:

rttt --device NRF52840_xxAA --mcp

Claude Code Configuration

Add to your .mcp.json:

{
    "mcpServers": {
        "rttt": {
            "type": "http",
            "url": "http://127.0.0.1:8090/mcp"
        }
    }
}

Available MCP Tools

Tool Description
send_command(command, timeout) Send a shell command to the device and wait for response
read_terminal(lines) Read recent terminal output (device responses and sent commands)
read_log(lines, after_cursor, pattern) Read log output from the device ring buffer, with optional regex filter
status() Get session statistics (line counts, buffer usage, cursors)
flash(file_path, addr) Flash a firmware file (.hex, .bin, .elf, .srec) to the target device

License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❤  by HARDWARIO a.s. in the heart of Europe.

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

rttt-1.5.1.tar.gz (24.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rttt-1.5.1-py3-none-any.whl (27.3 kB view details)

Uploaded Python 3

File details

Details for the file rttt-1.5.1.tar.gz.

File metadata

  • Download URL: rttt-1.5.1.tar.gz
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rttt-1.5.1.tar.gz
Algorithm Hash digest
SHA256 e3511ad928520de5cebc2c4309ec16ad1c02d1b6519627a3d441d74c5cc51b51
MD5 455c2bd01134156859ac73b01b950d19
BLAKE2b-256 b514ef935929e5975e47d4b8535ba5786ea0ddd7093d620ac058755b5ea84b4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rttt-1.5.1.tar.gz:

Publisher: publish.yaml on hardwario/py-rttt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rttt-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: rttt-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rttt-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 07d7388671077c14316c949e9c7e7f7d88083bad42dc2cbb0223c1e58c1c7832
MD5 8208dcdf5d54e0b09bab5131a5752671
BLAKE2b-256 5aac3c203e5fad051de8a90f9c435957c1a9fdc29c6100951849198b83abe61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rttt-1.5.1-py3-none-any.whl:

Publisher: publish.yaml on hardwario/py-rttt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page