From f13d78f7c3f5b109752e958ab30ddfd7a198102f Mon Sep 17 00:00:00 2001 From: Albin Hedman Date: Fri, 6 Dec 2024 18:01:33 +0100 Subject: [PATCH] Export pac as pac (#156) --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 93c12d07..d274d5ae 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -67,6 +67,8 @@ pub use stm32g4::stm32g491 as stm32; #[cfg(feature = "stm32g4a1")] pub use stm32g4::stm32g4a1 as stm32; +pub use stm32 as pac; + #[cfg(feature = "rt")] pub use crate::stm32::interrupt;