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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#[doc = "Register `PANCTR` reader"]
pub type R = crate::R<PanctrSpec>;
#[doc = "Register `PANCTR` writer"]
pub type W = crate::W<PanctrSpec>;
#[doc = "Field `PANCMD` reader - Panel Command"]
pub type PancmdR = crate::FieldReader;
#[doc = "Field `PANCMD` writer - Panel Command"]
pub type PancmdW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Panel Busy Flag\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Busy {
    #[doc = "0: Panel has finished command and is ready to accept a new command."]
    Value1 = 0,
    #[doc = "1: Panel operation is in progress."]
    Value2 = 1,
}
impl From<Busy> for bool {
    #[inline(always)]
    fn from(variant: Busy) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `BUSY` reader - Panel Busy Flag"]
pub type BusyR = crate::BitReader<Busy>;
impl BusyR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Busy {
        match self.bits {
            false => Busy::Value1,
            true => Busy::Value2,
        }
    }
    #[doc = "Panel has finished command and is ready to accept a new command."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Busy::Value1
    }
    #[doc = "Panel operation is in progress."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Busy::Value2
    }
}
#[doc = "Result Busy Flag\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Rbusy {
    #[doc = "0: No update of PANAR1 and PANAR2 is scheduled by the list controller."]
    Value1 = 0,
    #[doc = "1: A list command is running (BUSY = 1) that will write results to PANAR1 and PANAR2, but the results are not yet available."]
    Value2 = 1,
}
impl From<Rbusy> for bool {
    #[inline(always)]
    fn from(variant: Rbusy) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RBUSY` reader - Result Busy Flag"]
pub type RbusyR = crate::BitReader<Rbusy>;
impl RbusyR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Rbusy {
        match self.bits {
            false => Rbusy::Value1,
            true => Rbusy::Value2,
        }
    }
    #[doc = "No update of PANAR1 and PANAR2 is scheduled by the list controller."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Rbusy::Value1
    }
    #[doc = "A list command is running (BUSY = 1) that will write results to PANAR1 and PANAR2, but the results are not yet available."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Rbusy::Value2
    }
}
#[doc = "Field `PANAR1` reader - Panel Argument 1"]
pub type Panar1R = crate::FieldReader;
#[doc = "Field `PANAR1` writer - Panel Argument 1"]
pub type Panar1W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `PANAR2` reader - Panel Argument 2"]
pub type Panar2R = crate::FieldReader;
#[doc = "Field `PANAR2` writer - Panel Argument 2"]
pub type Panar2W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
impl R {
    #[doc = "Bits 0:7 - Panel Command"]
    #[inline(always)]
    pub fn pancmd(&self) -> PancmdR {
        PancmdR::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bit 8 - Panel Busy Flag"]
    #[inline(always)]
    pub fn busy(&self) -> BusyR {
        BusyR::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Result Busy Flag"]
    #[inline(always)]
    pub fn rbusy(&self) -> RbusyR {
        RbusyR::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bits 16:23 - Panel Argument 1"]
    #[inline(always)]
    pub fn panar1(&self) -> Panar1R {
        Panar1R::new(((self.bits >> 16) & 0xff) as u8)
    }
    #[doc = "Bits 24:31 - Panel Argument 2"]
    #[inline(always)]
    pub fn panar2(&self) -> Panar2R {
        Panar2R::new(((self.bits >> 24) & 0xff) as u8)
    }
}
impl W {
    #[doc = "Bits 0:7 - Panel Command"]
    #[inline(always)]
    #[must_use]
    pub fn pancmd(&mut self) -> PancmdW<PanctrSpec> {
        PancmdW::new(self, 0)
    }
    #[doc = "Bits 16:23 - Panel Argument 1"]
    #[inline(always)]
    #[must_use]
    pub fn panar1(&mut self) -> Panar1W<PanctrSpec> {
        Panar1W::new(self, 16)
    }
    #[doc = "Bits 24:31 - Panel Argument 2"]
    #[inline(always)]
    #[must_use]
    pub fn panar2(&mut self) -> Panar2W<PanctrSpec> {
        Panar2W::new(self, 24)
    }
}
#[doc = "Panel Control Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`panctr::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 [`panctr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PanctrSpec;
impl crate::RegisterSpec for PanctrSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`panctr::R`](R) reader structure"]
impl crate::Readable for PanctrSpec {}
#[doc = "`write(|w| ..)` method takes [`panctr::W`](W) writer structure"]
impl crate::Writable for PanctrSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets PANCTR to value 0x0301"]
impl crate::Resettable for PanctrSpec {
    const RESET_VALUE: u32 = 0x0301;
}