From 16a67e9c92e5143c0bd9ba5c16efcc307cb07f36 Mon Sep 17 00:00:00 2001 From: Kilian Barning Date: Sat, 7 Dec 2024 04:20:22 +0100 Subject: [PATCH] Fix rebase --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index db390cf..84ff5a0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -140,6 +140,9 @@ pub mod spi; #[cfg(riot_module_periph_adc)] pub mod adc; +#[cfg(riot_module_periph_dac)] +pub mod dac; + #[cfg(riot_module_ztimer)] pub mod ztimer; @@ -205,3 +208,6 @@ pub mod auto_init; feature = "with_embedded_nal_async" ))] mod async_helpers; + +#[cfg(riot_module_periph_uart)] +pub mod uart;