#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::imxrt101::peripherals::tempmon::Instance;
pub use crate::imxrt101::peripherals::tempmon::{RegisterBlock, ResetValues};
pub use crate::imxrt101::peripherals::tempmon::{
TEMPSENSE0, TEMPSENSE0_CLR, TEMPSENSE0_SET, TEMPSENSE0_TOG, TEMPSENSE1, TEMPSENSE1_CLR,
TEMPSENSE1_SET, TEMPSENSE1_TOG, TEMPSENSE2, TEMPSENSE2_CLR, TEMPSENSE2_SET, TEMPSENSE2_TOG,
};
pub mod TEMPMON {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x400d8000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
TEMPSENSE0: 0x00000001,
TEMPSENSE0_SET: 0x00000001,
TEMPSENSE0_CLR: 0x00000001,
TEMPSENSE0_TOG: 0x00000001,
TEMPSENSE1: 0x00000001,
TEMPSENSE1_SET: 0x00000001,
TEMPSENSE1_CLR: 0x00000001,
TEMPSENSE1_TOG: 0x00000001,
TEMPSENSE2: 0x00000000,
TEMPSENSE2_SET: 0x00000000,
TEMPSENSE2_CLR: 0x00000000,
TEMPSENSE2_TOG: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut TEMPMON_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if TEMPMON_TAKEN {
None
} else {
TEMPMON_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if TEMPMON_TAKEN && inst.addr == INSTANCE.addr {
TEMPMON_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
TEMPMON_TAKEN = true;
INSTANCE
}
}
pub const TEMPMON: *const RegisterBlock = 0x400d8000 as *const _;