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
#[doc = "Register `ACTIVE` reader"]
pub type R = crate::R<ACTIVE_SPEC>;
#[doc = "Field `LVLEX0` reader - Level 0 Channel Trigger Request Executing"]
pub type LVLEX0_R = crate::BitReader;
#[doc = "Field `LVLEX1` reader - Level 1 Channel Trigger Request Executing"]
pub type LVLEX1_R = crate::BitReader;
#[doc = "Field `LVLEX2` reader - Level 2 Channel Trigger Request Executing"]
pub type LVLEX2_R = crate::BitReader;
#[doc = "Field `LVLEX3` reader - Level 3 Channel Trigger Request Executing"]
pub type LVLEX3_R = crate::BitReader;
#[doc = "Field `ID` reader - Active Channel ID"]
pub type ID_R = crate::FieldReader;
#[doc = "Field `ABUSY` reader - Active Channel Busy"]
pub type ABUSY_R = crate::BitReader;
#[doc = "Field `BTCNT` reader - Active Channel Block Transfer Count"]
pub type BTCNT_R = crate::FieldReader<u16>;
impl R {
    #[doc = "Bit 0 - Level 0 Channel Trigger Request Executing"]
    #[inline(always)]
    pub fn lvlex0(&self) -> LVLEX0_R {
        LVLEX0_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Level 1 Channel Trigger Request Executing"]
    #[inline(always)]
    pub fn lvlex1(&self) -> LVLEX1_R {
        LVLEX1_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Level 2 Channel Trigger Request Executing"]
    #[inline(always)]
    pub fn lvlex2(&self) -> LVLEX2_R {
        LVLEX2_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Level 3 Channel Trigger Request Executing"]
    #[inline(always)]
    pub fn lvlex3(&self) -> LVLEX3_R {
        LVLEX3_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bits 8:12 - Active Channel ID"]
    #[inline(always)]
    pub fn id(&self) -> ID_R {
        ID_R::new(((self.bits >> 8) & 0x1f) as u8)
    }
    #[doc = "Bit 15 - Active Channel Busy"]
    #[inline(always)]
    pub fn abusy(&self) -> ABUSY_R {
        ABUSY_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bits 16:31 - Active Channel Block Transfer Count"]
    #[inline(always)]
    pub fn btcnt(&self) -> BTCNT_R {
        BTCNT_R::new(((self.bits >> 16) & 0xffff) as u16)
    }
}
#[doc = "Active Channel and Levels\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`active::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct ACTIVE_SPEC;
impl crate::RegisterSpec for ACTIVE_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`active::R`](R) reader structure"]
impl crate::Readable for ACTIVE_SPEC {}
#[doc = "`reset()` method sets ACTIVE to value 0"]
impl crate::Resettable for ACTIVE_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}