[][src]Crate panic_rtt

Set the panicking behavior to log to a JLINK debugger and loop.

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

Usage

This example is not tested
#![no_std]

extern crate panic_rtt;

fn main() {
    panic!("message is logged to debugger");
}