software uart is now a library

This commit is contained in:
Priec
2025-11-23 15:48:54 +01:00
parent 685067a75f
commit 4097ce1c7a
28 changed files with 4450 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// src/lib.rs
#![no_std]
pub mod gpio_dma_uart_tx;
pub mod gpio_dma_uart_rx;
pub mod dma_timer;
pub mod uart_emulation;
pub mod debug;
pub use gpio_dma_uart_tx::*;
pub use gpio_dma_uart_rx::*;
pub use dma_timer::*;
pub use uart_emulation::*;
pub use debug::*;