atsamd21j/usb/device/
fsmstatus.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#[doc = "Register `FSMSTATUS` reader"]
pub type R = crate::R<FsmstatusSpec>;
#[doc = "Fine State Machine Status\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Fsmstateselect {
    #[doc = "1: OFF (L3). It corresponds to the powered-off, disconnected, and disabled state"]
    Off = 1,
    #[doc = "2: ON (L0). It corresponds to the Idle and Active states"]
    On = 2,
    #[doc = "4: SUSPEND (L2)"]
    Suspend = 4,
    #[doc = "8: SLEEP (L1)"]
    Sleep = 8,
    #[doc = "16: DNRESUME. Down Stream Resume."]
    Dnresume = 16,
    #[doc = "32: UPRESUME. Up Stream Resume."]
    Upresume = 32,
    #[doc = "64: RESET. USB lines Reset."]
    Reset = 64,
}
impl From<Fsmstateselect> for u8 {
    #[inline(always)]
    fn from(variant: Fsmstateselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Fsmstateselect {
    type Ux = u8;
}
impl crate::IsEnum for Fsmstateselect {}
#[doc = "Field `FSMSTATE` reader - Fine State Machine Status"]
pub type FsmstateR = crate::FieldReader<Fsmstateselect>;
impl FsmstateR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Fsmstateselect> {
        match self.bits {
            1 => Some(Fsmstateselect::Off),
            2 => Some(Fsmstateselect::On),
            4 => Some(Fsmstateselect::Suspend),
            8 => Some(Fsmstateselect::Sleep),
            16 => Some(Fsmstateselect::Dnresume),
            32 => Some(Fsmstateselect::Upresume),
            64 => Some(Fsmstateselect::Reset),
            _ => None,
        }
    }
    #[doc = "OFF (L3). It corresponds to the powered-off, disconnected, and disabled state"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == Fsmstateselect::Off
    }
    #[doc = "ON (L0). It corresponds to the Idle and Active states"]
    #[inline(always)]
    pub fn is_on(&self) -> bool {
        *self == Fsmstateselect::On
    }
    #[doc = "SUSPEND (L2)"]
    #[inline(always)]
    pub fn is_suspend(&self) -> bool {
        *self == Fsmstateselect::Suspend
    }
    #[doc = "SLEEP (L1)"]
    #[inline(always)]
    pub fn is_sleep(&self) -> bool {
        *self == Fsmstateselect::Sleep
    }
    #[doc = "DNRESUME. Down Stream Resume."]
    #[inline(always)]
    pub fn is_dnresume(&self) -> bool {
        *self == Fsmstateselect::Dnresume
    }
    #[doc = "UPRESUME. Up Stream Resume."]
    #[inline(always)]
    pub fn is_upresume(&self) -> bool {
        *self == Fsmstateselect::Upresume
    }
    #[doc = "RESET. USB lines Reset."]
    #[inline(always)]
    pub fn is_reset(&self) -> bool {
        *self == Fsmstateselect::Reset
    }
}
impl R {
    #[doc = "Bits 0:6 - Fine State Machine Status"]
    #[inline(always)]
    pub fn fsmstate(&self) -> FsmstateR {
        FsmstateR::new(self.bits & 0x7f)
    }
}
#[doc = "Finite State Machine Status\n\nYou can [`read`](crate::Reg::read) this register and get [`fsmstatus::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct FsmstatusSpec;
impl crate::RegisterSpec for FsmstatusSpec {
    type Ux = u8;
}
#[doc = "`read()` method returns [`fsmstatus::R`](R) reader structure"]
impl crate::Readable for FsmstatusSpec {}
#[doc = "`reset()` method sets FSMSTATUS to value 0x01"]
impl crate::Resettable for FsmstatusSpec {
    const RESET_VALUE: u8 = 0x01;
}