dma Rx working

This commit is contained in:
Priec
2025-10-31 17:28:34 +01:00
parent 28b468902a
commit 8ce9ee9f6c
6 changed files with 106 additions and 80 deletions

View File

@@ -1,8 +1,9 @@
#![no_std]
pub mod gpio_dma_uart;
pub use gpio_dma_uart::*;
pub mod gpio_dma_uart_tx;
pub mod gpio_dma_uart_rx;
pub mod dma_timer;
pub use gpio_dma_uart_tx::*;
pub use gpio_dma_uart_rx::*;
pub use dma_timer::*;
pub mod gpio_uart_rx;