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
#[doc = "Register `STATUSB` reader"]
pub type R = crate::R<STATUSB_SPEC>;
#[doc = "Field `PROT` reader - Protected"]
pub type PROT_R = crate::BitReader;
#[doc = "Field `DBGPRES` reader - Debugger Present"]
pub type DBGPRES_R = crate::BitReader;
#[doc = "Field `DCCD0` reader - Debug Communication Channel 0 Dirty"]
pub type DCCD0_R = crate::BitReader;
#[doc = "Field `DCCD1` reader - Debug Communication Channel 1 Dirty"]
pub type DCCD1_R = crate::BitReader;
#[doc = "Field `HPE` reader - Hot-Plugging Enable"]
pub type HPE_R = crate::BitReader;
#[doc = "Field `CELCK` reader - Chip Erase Locked"]
pub type CELCK_R = crate::BitReader;
#[doc = "Field `TDCCD0` reader - Test Debug Communication Channel 0 Dirty"]
pub type TDCCD0_R = crate::BitReader;
#[doc = "Field `TDCCD1` reader - Test Debug Communication Channel 1 Dirty"]
pub type TDCCD1_R = crate::BitReader;
impl R {
    #[doc = "Bit 0 - Protected"]
    #[inline(always)]
    pub fn prot(&self) -> PROT_R {
        PROT_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Debugger Present"]
    #[inline(always)]
    pub fn dbgpres(&self) -> DBGPRES_R {
        DBGPRES_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Debug Communication Channel 0 Dirty"]
    #[inline(always)]
    pub fn dccd0(&self) -> DCCD0_R {
        DCCD0_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Debug Communication Channel 1 Dirty"]
    #[inline(always)]
    pub fn dccd1(&self) -> DCCD1_R {
        DCCD1_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Hot-Plugging Enable"]
    #[inline(always)]
    pub fn hpe(&self) -> HPE_R {
        HPE_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Chip Erase Locked"]
    #[inline(always)]
    pub fn celck(&self) -> CELCK_R {
        CELCK_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Test Debug Communication Channel 0 Dirty"]
    #[inline(always)]
    pub fn tdccd0(&self) -> TDCCD0_R {
        TDCCD0_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Test Debug Communication Channel 1 Dirty"]
    #[inline(always)]
    pub fn tdccd1(&self) -> TDCCD1_R {
        TDCCD1_R::new(((self.bits >> 7) & 1) != 0)
    }
}
#[doc = "Status B\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`statusb::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct STATUSB_SPEC;
impl crate::RegisterSpec for STATUSB_SPEC {
    type Ux = u8;
}
#[doc = "`read()` method returns [`statusb::R`](R) reader structure"]
impl crate::Readable for STATUSB_SPEC {}
#[doc = "`reset()` method sets STATUSB to value 0"]
impl crate::Resettable for STATUSB_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}