panic_rtt 0.1.0

Panic using the JLINK RTT protocol
docs.rs failed to build panic_rtt-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: panic_rtt-0.3.0

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");
}