Make RCC accessible using low-level API.
This commit is contained in:
parent
16d09f074a
commit
e07df92651
1 changed files with 5 additions and 0 deletions
|
@ -85,6 +85,11 @@ pub(crate) unsafe fn get_freqs() -> &'static Clocks {
|
|||
&*CLOCK_FREQS.as_ptr()
|
||||
}
|
||||
|
||||
#[cfg(feature = "unstable-pac")]
|
||||
pub mod low_level {
|
||||
pub use super::sealed::*;
|
||||
}
|
||||
|
||||
pub(crate) mod sealed {
|
||||
pub trait RccPeripheral {
|
||||
fn frequency() -> crate::time::Hertz;
|
||||
|
|
Loading…
Reference in a new issue