#ring-buffer #rtt #debugging #read-write

probe-rs-rtt

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

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

#1910 in Embedded development

Download history 84/week @ 2024-01-07 198/week @ 2024-01-14 240/week @ 2024-01-21 251/week @ 2024-01-28 224/week @ 2024-02-04 130/week @ 2024-02-11 337/week @ 2024-02-18 284/week @ 2024-02-25 224/week @ 2024-03-03 260/week @ 2024-03-10 73/week @ 2024-03-17 130/week @ 2024-03-24 165/week @ 2024-03-31 161/week @ 2024-04-07 59/week @ 2024-04-14 92/week @ 2024-04-21

482 downloads per month
Used in postform_rtt

MIT license

4MB
61K 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
~288K SLoC