Rework pac re-exporting, canonicalize syscfg path, use it plus SYSCFG_BASE.

This commit is contained in:
Bob McWhirter
2021-05-05 13:12:53 -04:00
parent 14ce02eecf
commit 12c510f222
2 changed files with 13 additions and 3 deletions

View File

@@ -10,7 +10,18 @@
pub mod fmt;
use embassy::interrupt::{Interrupt, InterruptExt};
pub(crate) use stm32_metapac as pac;
//pub(crate) use stm32_metapac as pac;
pub mod pac {
pub use stm32_metapac::*;
#[cfg(any(feature = "_syscfg_f4"))]
pub use stm32_metapac::syscfg_f4 as syscfg;
#[cfg(any(feature = "_syscfg_l4"))]
pub use stm32_metapac::syscfg_l4 as syscfg;
}
#[macro_use]
pub mod exti;