rtt-log

Crates.iortt-log
lib.rsrtt-log
version0.5.1
created_at2023-02-19 11:23:06.889422+00
updated_at2024-12-05 10:47:03.612028+00
descriptionLog facade implementation for the Segger RTT protocol.
homepage
repositoryhttps://github.com/sourcebox/rtt-log-rs
max_upload_size
id788774
size7,577
Oliver Rockstedt (sourcebox)

documentation

README

rtt-log

Log facade implementation for the Segger RTT protocol supported by the J-Link, ST-Link and other debug probes. It is based on rtt-target.

[!NOTE]

rtt-target introduced log integration with version 0.6.1, making this crate obsolete.

Please refer to the rtt-target docs for further details.

Usage

// Init the logger with maximum level (Trace).
rtt_log::init();

// Alternatively, init the logger with specific level.
rtt_log::init_with_level(log::LevelFilter::Debug);

// Log something.
log::debug!("Application started");

Use a tool like probe-rs on the host to print the messages.

[!NOTE]

RTT uses a global symbol _SEGGER_RTT that can only appear once in a compiled binary. Therefore, if you want to use functions from rtt-target directly, import them from rtt-log instead of adding rtt-target as a separate dependency. Otherwise, a linker error about duplicate symbols will occur.

use rtt_log::rtt_target::rprintln;

rprintln!("Hello, world!");

License

Published under the MIT license.

Author: Oliver Rockstedt info@sourcebox.de

Commit count: 23

cargo fmt