4 releases

0.1.3 Jan 4, 2024
0.1.2 Apr 27, 2021
0.1.1 Aug 21, 2020
0.1.0 Apr 19, 2020

#1422 in Embedded development

Download history 925/week @ 2023-12-22 2419/week @ 2023-12-29 2536/week @ 2024-01-05 1139/week @ 2024-01-12 783/week @ 2024-01-19 1847/week @ 2024-01-26 1054/week @ 2024-02-02 2757/week @ 2024-02-09 1436/week @ 2024-02-16 2567/week @ 2024-02-23 1056/week @ 2024-03-01 3107/week @ 2024-03-08 1954/week @ 2024-03-15 974/week @ 2024-03-22 1875/week @ 2024-03-29 1598/week @ 2024-04-05

6,604 downloads per month
Used in fewer than 26 crates

MIT license

45KB
623 lines

panic-rtt-target

crates.io documentation

Logs panic messages over RTT. A companion crate for rtt-target.

Documentation

RTT must have been initialized by using one of the rtt_init macros. Otherwise you will get a linker error at compile time.

Panics are always logged on channel 0. Upon panicking the channel mode is also automatically set to BlockIfFull, so that the full message will always be logged. If the code somehow manages to panic at runtime before RTT is initialized (quite unlikely), or if channel 0 doesn't exist, nothing is logged.

The panic handler runs in a non-returning critical_section which implementation should be provided by the user.

Usage

Cargo.toml:

[dependencies]
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"]}
panic-rtt-target = { version = "x.y.z" }

main.rs:

#![no_std]

use panic_rtt_target as _;
use rtt_target::rtt_init_default;

fn main() -> ! {
    // you can use any init macro as long as it creates channel 0
    rtt_init_default!();

    panic!("Something has gone terribly wrong");
}

Implementation details

The provided interrupt handler checks if RTT channel 0 is configured, writes the info and enters an infinite loop. If RTT channel 0 is not configured, the panic handler enters the failed to get channel infinite loop. The final state can be observed by breaking/halting the target.

fn panic(info: &PanicInfo) -> ! {
    critical_section::with(|_| {
        if let Some(mut channel) = unsafe { UpChannel::conjure(0) } {
            channel.set_mode(ChannelMode::BlockIfFull);

            writeln!(channel, "{}", info).ok();
        } else {
            // failed to get channel, but not much else we can do but spin
            loop {
                compiler_fence(SeqCst);
            }
        }

        // we should never leave critical section
        loop {
            compiler_fence(SeqCst);
        }
    })
}

Dependencies

~35KB