atsamd51n/dmac/channel/
chstatus.rs

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#[doc = "Register `CHSTATUS` reader"]
pub type R = crate::R<ChstatusSpec>;
#[doc = "Register `CHSTATUS` writer"]
pub type W = crate::W<ChstatusSpec>;
#[doc = "Field `PEND` reader - Channel Pending"]
pub type PendR = crate::BitReader;
#[doc = "Field `PEND` writer - Channel Pending"]
pub type PendW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BUSY` reader - Channel Busy"]
pub type BusyR = crate::BitReader;
#[doc = "Field `BUSY` writer - Channel Busy"]
pub type BusyW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `FERR` reader - Channel Fetch Error"]
pub type FerrR = crate::BitReader;
#[doc = "Field `FERR` writer - Channel Fetch Error"]
pub type FerrW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CRCERR` reader - Channel CRC Error"]
pub type CrcerrR = crate::BitReader;
#[doc = "Field `CRCERR` writer - Channel CRC Error"]
pub type CrcerrW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bit 0 - Channel Pending"]
    #[inline(always)]
    pub fn pend(&self) -> PendR {
        PendR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Channel Busy"]
    #[inline(always)]
    pub fn busy(&self) -> BusyR {
        BusyR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Channel Fetch Error"]
    #[inline(always)]
    pub fn ferr(&self) -> FerrR {
        FerrR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Channel CRC Error"]
    #[inline(always)]
    pub fn crcerr(&self) -> CrcerrR {
        CrcerrR::new(((self.bits >> 3) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Channel Pending"]
    #[inline(always)]
    #[must_use]
    pub fn pend(&mut self) -> PendW<ChstatusSpec> {
        PendW::new(self, 0)
    }
    #[doc = "Bit 1 - Channel Busy"]
    #[inline(always)]
    #[must_use]
    pub fn busy(&mut self) -> BusyW<ChstatusSpec> {
        BusyW::new(self, 1)
    }
    #[doc = "Bit 2 - Channel Fetch Error"]
    #[inline(always)]
    #[must_use]
    pub fn ferr(&mut self) -> FerrW<ChstatusSpec> {
        FerrW::new(self, 2)
    }
    #[doc = "Bit 3 - Channel CRC Error"]
    #[inline(always)]
    #[must_use]
    pub fn crcerr(&mut self) -> CrcerrW<ChstatusSpec> {
        CrcerrW::new(self, 3)
    }
}
#[doc = "Channel n Status\n\nYou can [`read`](crate::Reg::read) this register and get [`chstatus::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`chstatus::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct ChstatusSpec;
impl crate::RegisterSpec for ChstatusSpec {
    type Ux = u8;
}
#[doc = "`read()` method returns [`chstatus::R`](R) reader structure"]
impl crate::Readable for ChstatusSpec {}
#[doc = "`write(|w| ..)` method takes [`chstatus::W`](W) writer structure"]
impl crate::Writable for ChstatusSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets CHSTATUS to value 0"]
impl crate::Resettable for ChstatusSpec {
    const RESET_VALUE: u8 = 0;
}