#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::cortex_m::peripherals::dcb::Instance;
pub use crate::cortex_m::peripherals::dcb::{RegisterBlock, ResetValues};
pub use crate::cortex_m::peripherals::dcb::{DCRDR, DCRSR, DEMCR, DHCSR};
pub mod DCB {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0xe000edf0,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
DHCSR: 0x00000000,
DCRSR: 0x00000000,
DCRDR: 0x00000000,
DEMCR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut DCB_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if DCB_TAKEN {
None
} else {
DCB_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if DCB_TAKEN && inst.addr == INSTANCE.addr {
DCB_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
DCB_TAKEN = true;
INSTANCE
}
}
pub const DCB: *const RegisterBlock = 0xe000edf0 as *const _;