#[doc = "Register `INT_ST` reader"]
pub type R = crate::R<INT_ST_SPEC>;
#[doc = "Field `ADC2_THRES` reader - Status of APB_SARADC_ADC2_THRES_INT interrupt."]
pub type ADC2_THRES_R = crate::BitReader;
#[doc = "Field `ADC1_THRES` reader - Status of APB_SARADC_ADC1_THRES_INT interrupt."]
pub type ADC1_THRES_R = crate::BitReader;
#[doc = "Field `ADC2_DONE` reader - Status of APB_SARADC_ADC2_DONE_INT interrupt."]
pub type ADC2_DONE_R = crate::BitReader;
#[doc = "Field `ADC1_DONE` reader - Status of APB_SARADC_ADC1_DONE_INT interrupt."]
pub type ADC1_DONE_R = crate::BitReader;
impl R {
#[doc = "Bit 28 - Status of APB_SARADC_ADC2_THRES_INT interrupt."]
#[inline(always)]
pub fn adc2_thres(&self) -> ADC2_THRES_R {
ADC2_THRES_R::new(((self.bits >> 28) & 1) != 0)
}
#[doc = "Bit 29 - Status of APB_SARADC_ADC1_THRES_INT interrupt."]
#[inline(always)]
pub fn adc1_thres(&self) -> ADC1_THRES_R {
ADC1_THRES_R::new(((self.bits >> 29) & 1) != 0)
}
#[doc = "Bit 30 - Status of APB_SARADC_ADC2_DONE_INT interrupt."]
#[inline(always)]
pub fn adc2_done(&self) -> ADC2_DONE_R {
ADC2_DONE_R::new(((self.bits >> 30) & 1) != 0)
}
#[doc = "Bit 31 - Status of APB_SARADC_ADC1_DONE_INT interrupt."]
#[inline(always)]
pub fn adc1_done(&self) -> ADC1_DONE_R {
ADC1_DONE_R::new(((self.bits >> 31) & 1) != 0)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("INT_ST")
.field("adc2_thres", &self.adc2_thres())
.field("adc1_thres", &self.adc1_thres())
.field("adc2_done", &self.adc2_done())
.field("adc1_done", &self.adc1_done())
.finish()
}
}
#[doc = "DIG ADC interrupt status\n\nYou can [`read`](crate::Reg::read) this register and get [`int_st::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct INT_ST_SPEC;
impl crate::RegisterSpec for INT_ST_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`int_st::R`](R) reader structure"]
impl crate::Readable for INT_ST_SPEC {}
#[doc = "`reset()` method sets INT_ST to value 0"]
impl crate::Resettable for INT_ST_SPEC {}