fix panic handler

master
Robert Jördens 2019-06-07 14:28:22 +00:00
parent 8ee0950005
commit 9b6ef68eac
1 changed files with 2 additions and 3 deletions

View File

@ -8,9 +8,8 @@
#[panic_handler]
#[cfg(not(feature = "semihosting"))]
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
let gpiod = unsafe { &*pac::GPIOD::ptr() };
gpiod.odr.modify(|_, w| w.odr6().high().odr12().high()); // FP_LED_1, FP_LED_3
loop { core::sync::atomic::compiler_fence(core::sync::atomic::Ordering::SeqCst); }
}