12 releases (breaking)

0.14.2 Jan 18, 2023
0.13.0 Jul 12, 2022
0.12.0 Nov 24, 2021
0.11.0 Jun 23, 2021
0.3.0 Jun 30, 2020

#2094 in Embedded development

Download history 24/week @ 2024-07-22 79/week @ 2024-07-29 33/week @ 2024-08-05 24/week @ 2024-08-12 27/week @ 2024-08-19 36/week @ 2024-08-26 56/week @ 2024-09-02 26/week @ 2024-09-09 31/week @ 2024-09-16 77/week @ 2024-09-23 37/week @ 2024-09-30 38/week @ 2024-10-07 31/week @ 2024-10-14 74/week @ 2024-10-21 42/week @ 2024-10-28 19/week @ 2024-11-04

171 downloads per month
Used in postform_rtt

MIT license

2.5MB
50K SLoC

probe-rs-rtt

crates.io documentation

Host side implementation of the RTT (Real-Time Transfer) I/O protocol over probe-rs.

Documentation

RTT implements input and output to/from a microcontroller using in-memory ring buffers and memory polling. This enables debug logging from the microcontroller with minimal delays and no blocking, making it usable even in real-time applications where e.g. semihosting delays cannot be tolerated.

This crate enables you to read and write via RTT channels. It's also used as a building-block for probe-rs debugging tools.


lib.rs:

Host side implementation of the RTT (Real-Time Transfer) I/O protocol over probe-rs

RTT implements input and output to/from a microcontroller using in-memory ring buffers and memory polling. This enables debug logging from the microcontroller with minimal delays and no blocking, making it usable even in real-time applications where e.g. semihosting delays cannot be tolerated.

This crate enables you to read and write via RTT channels. It's also used as a building-block for probe-rs debugging tools.

Example

use std::sync::{Arc, Mutex};
use probe_rs::{Probe, Permissions};
use probe_rs_rtt::Rtt;

// First obtain a probe-rs session (see probe-rs documentation for details)
let probe = Probe::list_all()[0].open()?;
let mut session = probe.attach("somechip", Permissions::default())?;
let memory_map = session.target().memory_map.clone();
// Select a core.
let mut core = session.core(0)?;

// Attach to RTT
let mut rtt = Rtt::attach(&mut core, &memory_map)?;

// Read from a channel
if let Some(input) = rtt.up_channels().take(0) {
    let mut buf = [0u8; 1024];
    let count = input.read(&mut core, &mut buf[..])?;

    println!("Read data: {:?}", &buf[..count]);
}

// Write to a channel
if let Some(output) = rtt.down_channels().take(0) {
    output.write(&mut core, b"Hello, computer!\n")?;
}

Dependencies

~10–21MB
~278K SLoC