1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[doc = "Register `EVRVADCSTAT` reader"]
pub type R = crate::R<EVRVADCSTAT_SPEC>;
#[doc = "Field `VADC13V` reader - VADC 1.3 V Conversion Result"]
pub type VADC13V_R = crate::FieldReader;
#[doc = "Field `VADC33V` reader - VADC 3.3 V Conversion Result"]
pub type VADC33V_R = crate::FieldReader;
impl R {
    #[doc = "Bits 0:7 - VADC 1.3 V Conversion Result"]
    #[inline(always)]
    pub fn vadc13v(&self) -> VADC13V_R {
        VADC13V_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - VADC 3.3 V Conversion Result"]
    #[inline(always)]
    pub fn vadc33v(&self) -> VADC33V_R {
        VADC33V_R::new(((self.bits >> 8) & 0xff) as u8)
    }
}
#[doc = "EVR VADC Status Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`evrvadcstat::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EVRVADCSTAT_SPEC;
impl crate::RegisterSpec for EVRVADCSTAT_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`evrvadcstat::R`](R) reader structure"]
impl crate::Readable for EVRVADCSTAT_SPEC {}
#[doc = "`reset()` method sets EVRVADCSTAT to value 0"]
impl crate::Resettable for EVRVADCSTAT_SPEC {
    const RESET_VALUE: u32 = 0;
}