//! 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
//!
//! ```ignore
//! #![no_std]
//!
//! use panic_tracing_rtt as _;
//!
//! fn main() {
//! panic!("jankincai");
//! }
//! ```
use PanicInfo;
use ;
use interrupt;
!