rp2040_pac/adc/
fifo.rs

1#[doc = "Register `FIFO` reader"]
2pub type R = crate::R<FIFO_SPEC>;
3#[doc = "Field `VAL` reader - "]
4pub type VAL_R = crate::FieldReader<u16>;
5#[doc = "Field `ERR` reader - 1 if this particular sample experienced a conversion error. Remains in the same location if the sample is shifted."]
6pub type ERR_R = crate::BitReader;
7impl R {
8    #[doc = "Bits 0:11"]
9    #[inline(always)]
10    pub fn val(&self) -> VAL_R {
11        VAL_R::new((self.bits & 0x0fff) as u16)
12    }
13    #[doc = "Bit 15 - 1 if this particular sample experienced a conversion error. Remains in the same location if the sample is shifted."]
14    #[inline(always)]
15    pub fn err(&self) -> ERR_R {
16        ERR_R::new(((self.bits >> 15) & 1) != 0)
17    }
18}
19#[doc = "Conversion result FIFO  
20
21You can [`read`](crate::generic::Reg::read) this register and get [`fifo::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
22pub struct FIFO_SPEC;
23impl crate::RegisterSpec for FIFO_SPEC {
24    type Ux = u32;
25}
26#[doc = "`read()` method returns [`fifo::R`](R) reader structure"]
27impl crate::Readable for FIFO_SPEC {}
28#[doc = "`reset()` method sets FIFO to value 0"]
29impl crate::Resettable for FIFO_SPEC {
30    const RESET_VALUE: u32 = 0;
31}