#risc-v #cortex-m #logging #rtt

no-std rtt-log

Log facade implementation for the Segger RTT protocol

6 releases (breaking)

0.5.1 Dec 5, 2024
0.5.0 Nov 23, 2024
0.4.0 Sep 27, 2024
0.3.0 Mar 2, 2024
0.1.0 Feb 19, 2023

#860 in Embedded development

Download history 1503/week @ 2024-12-11 1641/week @ 2024-12-18 956/week @ 2024-12-25 719/week @ 2025-01-01 940/week @ 2025-01-08 569/week @ 2025-01-15 831/week @ 2025-01-22 696/week @ 2025-01-29 872/week @ 2025-02-05 1647/week @ 2025-02-12 694/week @ 2025-02-19 763/week @ 2025-02-26 853/week @ 2025-03-05 986/week @ 2025-03-12 1083/week @ 2025-03-19 771/week @ 2025-03-26

3,926 downloads per month

MIT license

6KB
52 lines

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

Dependencies

~1.5MB
~22K SLoC