#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::stm32f7::peripherals::adc_v1::Instance;
pub use crate::stm32f7::peripherals::adc_v1::{RegisterBlock, ResetValues};
pub use crate::stm32f7::peripherals::adc_v1::{
CR1, CR2, DR, HTR, JDR1, JDR2, JDR3, JDR4, JOFR1, JOFR2, JOFR3, JOFR4, JSQR, LTR, SMPR1, SMPR2,
SQR1, SQR2, SQR3, SR,
};
pub mod ADC1 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40012000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
SR: 0x00000000,
CR1: 0x00000000,
CR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
JOFR1: 0x00000000,
JOFR2: 0x00000000,
JOFR3: 0x00000000,
JOFR4: 0x00000000,
HTR: 0x00000FFF,
LTR: 0x00000000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
JSQR: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
DR: 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 = 0x40012000 as *const _;
pub mod ADC2 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40012100,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
SR: 0x00000000,
CR1: 0x00000000,
CR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
JOFR1: 0x00000000,
JOFR2: 0x00000000,
JOFR3: 0x00000000,
JOFR4: 0x00000000,
HTR: 0x00000FFF,
LTR: 0x00000000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
JSQR: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
DR: 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 = 0x40012100 as *const _;
pub mod ADC3 {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x40012200,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
SR: 0x00000000,
CR1: 0x00000000,
CR2: 0x00000000,
SMPR1: 0x00000000,
SMPR2: 0x00000000,
JOFR1: 0x00000000,
JOFR2: 0x00000000,
JOFR3: 0x00000000,
JOFR4: 0x00000000,
HTR: 0x00000FFF,
LTR: 0x00000000,
SQR1: 0x00000000,
SQR2: 0x00000000,
SQR3: 0x00000000,
JSQR: 0x00000000,
JDR1: 0x00000000,
JDR2: 0x00000000,
JDR3: 0x00000000,
JDR4: 0x00000000,
DR: 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 = 0x40012200 as *const _;