#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::stm32l4::peripherals::adc::Instance;
pub use crate::stm32l4::peripherals::adc::{RegisterBlock, ResetValues};
pub use crate::stm32l4::peripherals::adc::{
AWD2CR, AWD3CR, CALFACT, CFGR, CFGR2, CR, DIFSEL, DR, IER, ISR, JDR1, JDR2, JDR3, JDR4, JSQR,
OFR1, OFR2, OFR3, OFR4, SMPR1, SMPR2, SQR1, SQR2, SQR3, SQR4, TR1, TR2, TR3,
};
pub mod ADC1 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x50040000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
ISR: 0x00000000,
IER: 0x00000000,
CR: 0x00000000,
CFGR: 0x00000000,
CFGR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
TR1: 0x0FFF0000,
TR2: 0x0FFF0000,
TR3: 0x0FFF0000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
SQR4: 0x00000000,
DR: 0x00000000,
JSQR: 0x00000000,
OFR1: 0x00000000,
OFR2: 0x00000000,
OFR3: 0x00000000,
OFR4: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
AWD2CR: 0x00000000,
AWD3CR: 0x00000000,
DIFSEL: 0x00000000,
CALFACT: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut ADC1_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC1_TAKEN {
None
} else {
ADC1_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC1_TAKEN && inst.addr == INSTANCE.addr {
ADC1_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
ADC1_TAKEN = true;
INSTANCE
}
}
pub const ADC1: *const RegisterBlock = 0x50040000 as *const _;
pub mod ADC2 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x50040100,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
ISR: 0x00000000,
IER: 0x00000000,
CR: 0x00000000,
CFGR: 0x00000000,
CFGR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
TR1: 0x0FFF0000,
TR2: 0x0FFF0000,
TR3: 0x0FFF0000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
SQR4: 0x00000000,
DR: 0x00000000,
JSQR: 0x00000000,
OFR1: 0x00000000,
OFR2: 0x00000000,
OFR3: 0x00000000,
OFR4: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
AWD2CR: 0x00000000,
AWD3CR: 0x00000000,
DIFSEL: 0x00000000,
CALFACT: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut ADC2_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC2_TAKEN {
None
} else {
ADC2_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC2_TAKEN && inst.addr == INSTANCE.addr {
ADC2_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
ADC2_TAKEN = true;
INSTANCE
}
}
pub const ADC2: *const RegisterBlock = 0x50040100 as *const _;
pub mod ADC3 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x50040200,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
ISR: 0x00000000,
IER: 0x00000000,
CR: 0x00000000,
CFGR: 0x00000000,
CFGR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
TR1: 0x0FFF0000,
TR2: 0x0FFF0000,
TR3: 0x0FFF0000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
SQR4: 0x00000000,
DR: 0x00000000,
JSQR: 0x00000000,
OFR1: 0x00000000,
OFR2: 0x00000000,
OFR3: 0x00000000,
OFR4: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
AWD2CR: 0x00000000,
AWD3CR: 0x00000000,
DIFSEL: 0x00000000,
CALFACT: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut ADC3_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC3_TAKEN {
None
} else {
ADC3_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if ADC3_TAKEN && inst.addr == INSTANCE.addr {
ADC3_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
ADC3_TAKEN = true;
INSTANCE
}
}
pub const ADC3: *const RegisterBlock = 0x50040200 as *const _;