panic: turn red leds on

master
Robert Jördens 2019-06-07 11:26:24 +02:00
parent a8e2d616bb
commit 8ee0950005
1 changed files with 9 additions and 1 deletions

View File

@ -4,8 +4,16 @@
// Enable returning `!`
#![feature(never_type)]
#[inline(never)]
#[panic_handler]
#[cfg(not(feature = "semihosting"))]
extern crate panic_abort;
fn panic(_info: &core::panic::PanicInfo) -> ! {
let dp = unsafe { pac::Peripherals::steal() };
dp.GPIOD.odr.modify(|_, w| w.odr6().high()); // FP_LED_1
dp.GPIOG.odr.modify(|_, w| w.odr4().high()); // FP_LED_3
loop { core::sync::atomic::compiler_fence(core::sync::atomic::Ordering::SeqCst); }
}
#[cfg(feature = "semihosting")]
extern crate panic_semihosting;