#rtt #panic #jlink #panic-message #panic-handler #panic-impl

no-std panic-rtt-core

Report panic messages to the host using RTT / jlink

3 unstable releases

0.2.1 Aug 23, 2020
0.1.1 May 20, 2020
0.1.0 Apr 10, 2020

#3 in #jlink

Download history 20/week @ 2024-04-07 62/week @ 2024-04-14 51/week @ 2024-04-21 18/week @ 2024-04-28 19/week @ 2024-05-05 23/week @ 2024-05-12 28/week @ 2024-05-19 19/week @ 2024-05-26 22/week @ 2024-06-02 13/week @ 2024-06-09 30/week @ 2024-06-16 21/week @ 2024-06-23 6/week @ 2024-06-30 23/week @ 2024-07-07 21/week @ 2024-07-14 12/week @ 2024-07-21

62 downloads per month
Used in 12 crates

BSD-3-Clause

4KB

panic-rtt-core

Set the panicking behavior to log to a JLINK debugger and break. This leverages the rtt-target crate.

Currently, this crate only supports the ARM Cortex-M architecture.

Example

#![no_std]
use panic_rtt_core::{self, rtt_init_print, rprintln};

fn main() {
  // you must create a print channel if you wish to see print output in RTT
  rtt_init_print!(NoBlockTrim);
  let value = 5;
  rprintln!("Hello world! {}", value);
  panic!("message logged to jlink debugger");
}

lib.rs:

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

Currently, this crate only supports the ARM Cortex-M architecture.

Usage

#![no_std]

use panic_rtt_core::{self, rtt_init_print, rprintln};

fn main() {
    // you must create a print channel if you wish to see print output in RTT
    rtt_init_print!(NoBlockTrim);
    let value = 5;
    rprintln!("Hello world! {}", value);
    panic!("message logged to jlink debugger");
}

Dependencies

~1MB
~13K SLoC