#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::cortex_m::peripherals::dwt::Instance;
pub use crate::cortex_m::peripherals::dwt::{RegisterBlock, ResetValues};
pub use crate::cortex_m::peripherals::dwt::{
COMP0, COMP1, COMP10, COMP11, COMP12, COMP13, COMP14, COMP15, COMP2, COMP3, COMP4, COMP5,
COMP6, COMP7, COMP8, COMP9, CPICNT, CTRL, CYCCNT, EXCCNT, FOLDCNT, FUNCTION0, FUNCTION1,
FUNCTION10, FUNCTION11, FUNCTION12, FUNCTION13, FUNCTION14, FUNCTION15, FUNCTION2, FUNCTION3,
FUNCTION4, FUNCTION5, FUNCTION6, FUNCTION7, FUNCTION8, FUNCTION9, LAR, LSR, LSUCNT, MASK0,
MASK1, MASK10, MASK11, MASK12, MASK13, MASK14, MASK15, MASK2, MASK3, MASK4, MASK5, MASK6,
MASK7, MASK8, MASK9, PCSR, SLEEPCNT,
};
pub mod DWT {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0xe0001000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CTRL: 0x00000000,
CYCCNT: 0x00000000,
CPICNT: 0x00000000,
EXCCNT: 0x00000000,
SLEEPCNT: 0x00000000,
LSUCNT: 0x00000000,
FOLDCNT: 0x00000000,
PCSR: 0x00000000,
COMP0: 0x00000000,
MASK0: 0x00000000,
FUNCTION0: 0x00000000,
COMP1: 0x00000000,
MASK1: 0x00000000,
FUNCTION1: 0x00000000,
COMP2: 0x00000000,
MASK2: 0x00000000,
FUNCTION2: 0x00000000,
COMP3: 0x00000000,
MASK3: 0x00000000,
FUNCTION3: 0x00000000,
COMP4: 0x00000000,
MASK4: 0x00000000,
FUNCTION4: 0x00000000,
COMP5: 0x00000000,
MASK5: 0x00000000,
FUNCTION5: 0x00000000,
COMP6: 0x00000000,
MASK6: 0x00000000,
FUNCTION6: 0x00000000,
COMP7: 0x00000000,
MASK7: 0x00000000,
FUNCTION7: 0x00000000,
COMP8: 0x00000000,
MASK8: 0x00000000,
FUNCTION8: 0x00000000,
COMP9: 0x00000000,
MASK9: 0x00000000,
FUNCTION9: 0x00000000,
COMP10: 0x00000000,
MASK10: 0x00000000,
FUNCTION10: 0x00000000,
COMP11: 0x00000000,
MASK11: 0x00000000,
FUNCTION11: 0x00000000,
COMP12: 0x00000000,
MASK12: 0x00000000,
FUNCTION12: 0x00000000,
COMP13: 0x00000000,
MASK13: 0x00000000,
FUNCTION13: 0x00000000,
COMP14: 0x00000000,
MASK14: 0x00000000,
FUNCTION14: 0x00000000,
COMP15: 0x00000000,
MASK15: 0x00000000,
FUNCTION15: 0x00000000,
LSR: 0x00000000,
LAR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut DWT_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if DWT_TAKEN {
None
} else {
DWT_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if DWT_TAKEN && inst.addr == INSTANCE.addr {
DWT_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
DWT_TAKEN = true;
INSTANCE
}
}
pub const DWT: *const RegisterBlock = 0xe0001000 as *const _;