use d1_pac::{CCU, GPIO, UART0};
pub unsafe fn kernel_uart(ccu: &mut CCU, gpio: &mut GPIO, uart0: UART0) -> Uart {
ccu.uart_bgr
.write(|w| w.uart0_gating().pass().uart0_rst().deassert());
gpio.pb_cfg1
.write(|w| w.pb8_select().uart0_tx().pb9_select().uart0_rx());
gpio.pb_pull0
.write(|w| w.pc8_pull().pull_up().pc9_pull().pull_up());
uart0.mcr.write(|w| unsafe { w.bits(0) });
uart0.hsk.write(|w| w.hsk().handshake());
uart0
.dma_req_en
.modify(|_r, w| w.timeout_enable().set_bit());
uart0.fcr().write(|w| {
w.fifoe().set_bit();
w.dmam().mode_1();
w.rt().half_full();
w
});
uart0.ier().write(|w| {
w.erbfi().set_bit();
w
});
uart0.halt.write(|w| w.halt_tx().enabled());
uart0.lcr.write(|w| w.dlab().divisor_latch());
uart0.dll().write(|w| unsafe { w.dll().bits(13) });
uart0.dlh().write(|w| unsafe { w.dlh().bits(0) });
uart0.lcr.write(|w| w.dlab().rx_buffer().dls().eight());
uart0.halt.write(|w| w.halt_tx().disabled());
Uart(uart0)
}
pub struct Uart(d1_pac::UART0);
impl core::fmt::Write for Uart {
fn write_str(&mut self, s: &str) -> core::fmt::Result {
while self.0.usr.read().tfnf().bit_is_clear() {}
for byte in s.as_bytes() {
self.0.thr().write(|w| unsafe { w.thr().bits(*byte) });
while self.0.usr.read().tfnf().bit_is_clear() {}
}
Ok(())
}
}