dma used to transfer Tx

This commit is contained in:
Priec
2025-11-19 21:41:08 +01:00
parent 24d1da44aa
commit e569fbc39d
25 changed files with 2814 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// src/software_uart/mod.rs
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::*;