rp2040_pac/adc/
intf.rs

1#[doc = "Register `INTF` reader"]
2pub type R = crate::R<INTF_SPEC>;
3#[doc = "Register `INTF` writer"]
4pub type W = crate::W<INTF_SPEC>;
5#[doc = "Field `FIFO` reader - Triggered when the sample FIFO reaches a certain level.  
6 This level can be programmed via the FCS_THRESH field."]
7pub type FIFO_R = crate::BitReader;
8#[doc = "Field `FIFO` writer - Triggered when the sample FIFO reaches a certain level.  
9 This level can be programmed via the FCS_THRESH field."]
10pub type FIFO_W<'a, REG> = crate::BitWriter<'a, REG>;
11impl R {
12    #[doc = "Bit 0 - Triggered when the sample FIFO reaches a certain level.  
13 This level can be programmed via the FCS_THRESH field."]
14    #[inline(always)]
15    pub fn fifo(&self) -> FIFO_R {
16        FIFO_R::new((self.bits & 1) != 0)
17    }
18}
19impl W {
20    #[doc = "Bit 0 - Triggered when the sample FIFO reaches a certain level.  
21 This level can be programmed via the FCS_THRESH field."]
22    #[inline(always)]
23    #[must_use]
24    pub fn fifo(&mut self) -> FIFO_W<INTF_SPEC> {
25        FIFO_W::new(self, 0)
26    }
27    #[doc = r" Writes raw bits to the register."]
28    #[doc = r""]
29    #[doc = r" # Safety"]
30    #[doc = r""]
31    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
32    #[inline(always)]
33    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
34        self.bits = bits;
35        self
36    }
37}
38#[doc = "Interrupt Force  
39
40You can [`read`](crate::generic::Reg::read) this register and get [`intf::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`intf::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
41pub struct INTF_SPEC;
42impl crate::RegisterSpec for INTF_SPEC {
43    type Ux = u32;
44}
45#[doc = "`read()` method returns [`intf::R`](R) reader structure"]
46impl crate::Readable for INTF_SPEC {}
47#[doc = "`write(|w| ..)` method takes [`intf::W`](W) writer structure"]
48impl crate::Writable for INTF_SPEC {
49    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
50    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
51}
52#[doc = "`reset()` method sets INTF to value 0"]
53impl crate::Resettable for INTF_SPEC {
54    const RESET_VALUE: u32 = 0;
55}