blob: 2439aec4a2de51594d11b5a9dc93a6283e0f0549 [file] [log] [blame]
use core::fmt::Write;
use core::panic::PanicInfo;
use core::str;
use kernel::debug;
use kernel::debug::IoWrite;
use kernel::hil::gpio;
use kernel::hil::led;
use crate::CHIP;
use crate::PROCESSES;
struct Writer {}
static mut WRITER: Writer = Writer {};
impl Write for Writer {
fn write_str(&mut self, s: &str) -> ::core::fmt::Result {
self.write(s.as_bytes());
Ok(())
}
}
impl IoWrite for Writer {
fn write(&mut self, buf: &[u8]) {
unsafe {
matcha::uart::UART0.transmit_sync(buf);
}
}
}
/// Panic handler.
#[cfg(not(test))]
#[no_mangle]
#[panic_handler]
pub unsafe extern "C" fn panic_fmt(pi: &PanicInfo) -> ! {
// turn off the non panic leds, just in case
let first_led = &mut led::LedLow::new(&mut matcha::gpio::PORT[7]);
gpio::Pin::make_output(&matcha::gpio::PORT[7]);
let writer = &mut WRITER;
debug::panic(
&mut [first_led],
writer,
pi,
&rv32i::support::nop,
&PROCESSES,
&CHIP,
)
}