panic_rtt 0.3.0

Panic using the JLINK RTT protocol
Documentation

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

#![no_std]

extern crate panic_rtt;

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