use core::fmt::Write;
use core::panic::PanicInfo;
use core::ptr::addr_of;
use core::ptr::addr_of_mut;
use kernel::debug;
use kernel::debug::IoWrite;
use kernel::hil::led;
use kernel::hil::uart;
use kernel::hil::uart::Configure;
use crate::imxrt1050;
use imxrt1050::gpio::PinId;
use crate::CHIP;
use crate::PROCESSES;
use crate::PROCESS_PRINTER;
pub struct Writer {
initialized: bool,
}
pub static mut WRITER: Writer = Writer { initialized: false };
impl Writer {
pub fn set_initialized(&mut self) {
self.initialized = true;
}
}
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]) -> usize {
let ccm = crate::imxrt1050::ccm::Ccm::new();
let uart = imxrt1050::lpuart::Lpuart::new_lpuart1(&ccm);
if !self.initialized {
self.initialized = true;
let _ = uart.configure(uart::Parameters {
baud_rate: 115200,
stop_bits: uart::StopBits::One,
parity: uart::Parity::None,
hw_flow_control: false,
width: uart::Width::Eight,
});
}
for &c in buf {
uart.send_byte(c);
}
buf.len()
}
}
#[no_mangle]
#[panic_handler]
pub unsafe fn panic_fmt(info: &PanicInfo) -> ! {
let pin = imxrt1050::gpio::Pin::from_pin_id(PinId::AdB0_09);
let led = &mut led::LedLow::new(&pin);
let writer = &mut *addr_of_mut!(WRITER);
debug::panic(
&mut [led],
writer,
info,
&cortexm7::support::nop,
&*addr_of!(PROCESSES),
&*addr_of!(CHIP),
&*addr_of!(PROCESS_PRINTER),
)
}