Reexport NVIC_PRIO_BITS at HAL root.

This allows using RTIC with `#[rtic::app(device = embassy_nrf, ...)]`
This commit is contained in:
Dario Nieuwenhuis
2023-06-08 16:39:05 +02:00
parent bce24e8005
commit 5c2f02c735
6 changed files with 13 additions and 2 deletions

View File

@ -111,6 +111,8 @@ pub use stm32_metapac as pac;
#[cfg(not(feature = "unstable-pac"))]
pub(crate) use stm32_metapac as pac;
pub use crate::pac::NVIC_PRIO_BITS;
#[non_exhaustive]
pub struct Config {
pub rcc: rcc::Config,