Crate panic_tracing_rtt

Source
Expand description

Set the panicking behavior to a J-LINK debugger and loop.

This crate contains a panic handler that emits the reason to an in-memory ring buffer that an attached J-LINK device can print, and then loops forever.

§Example

#![no_std]
 
use panic_tracing_rtt as _;
 
fn main() {
    panic!("jankincai");
}