3 releases (breaking)
0.3.0 | Feb 4, 2024 |
---|---|
0.2.0 | Nov 10, 2023 |
0.1.0 | May 28, 2023 |
#312 in No standard library
7KB
panic-usb-boot
Set the panicking behavior to reset to usb boot interface, based on panic-halt
by @korken89 and rom function lookup from rp2040-hal
. Only works on the rp2040 microcontroller.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE-2.0 or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
lib.rs
:
Set the panicking behavior to reset into the usb boot interface
This crate contains an implementation of panic_fmt
that calls the rp2040's ROM function to reset to usb boot
Usage
#![no_std]
extern crate panic_usb_boot;
fn main() {
panic!("argument is ignored");
}
Breakable symbols
With the panic handler being #[inline(never)]
the symbol rust_begin_unwind
will be
available to place a breakpoint on to halt when a panic is happening.