#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::imxrt105::peripherals::cmp::Instance;
pub use crate::imxrt105::peripherals::cmp::{RegisterBlock, ResetValues};
pub use crate::imxrt105::peripherals::cmp::{CR0, CR1, DACCR, FPR, MUXCR, SCR};
pub mod CMP1 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40094000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CR0: 0x00000000,
CR1: 0x00000000,
FPR: 0x00000000,
SCR: 0x00000000,
DACCR: 0x00000000,
MUXCR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut CMP1_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP1_TAKEN {
None
} else {
CMP1_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP1_TAKEN && inst.addr == INSTANCE.addr {
CMP1_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
CMP1_TAKEN = true;
INSTANCE
}
}
pub const CMP1: *const RegisterBlock = 0x40094000 as *const _;
pub mod CMP2 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40094008,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CR0: 0x00000000,
CR1: 0x00000000,
FPR: 0x00000000,
SCR: 0x00000000,
DACCR: 0x00000000,
MUXCR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut CMP2_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP2_TAKEN {
None
} else {
CMP2_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP2_TAKEN && inst.addr == INSTANCE.addr {
CMP2_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
CMP2_TAKEN = true;
INSTANCE
}
}
pub const CMP2: *const RegisterBlock = 0x40094008 as *const _;
pub mod CMP3 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40094010,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CR0: 0x00000000,
CR1: 0x00000000,
FPR: 0x00000000,
SCR: 0x00000000,
DACCR: 0x00000000,
MUXCR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut CMP3_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP3_TAKEN {
None
} else {
CMP3_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP3_TAKEN && inst.addr == INSTANCE.addr {
CMP3_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
CMP3_TAKEN = true;
INSTANCE
}
}
pub const CMP3: *const RegisterBlock = 0x40094010 as *const _;
pub mod CMP4 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40094018,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CR0: 0x00000000,
CR1: 0x00000000,
FPR: 0x00000000,
SCR: 0x00000000,
DACCR: 0x00000000,
MUXCR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut CMP4_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP4_TAKEN {
None
} else {
CMP4_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if CMP4_TAKEN && inst.addr == INSTANCE.addr {
CMP4_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
CMP4_TAKEN = true;
INSTANCE
}
}
pub const CMP4: *const RegisterBlock = 0x40094018 as *const _;