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 = "Reader of register TWCR"]
pub type R = crate::R<u32, super::TWCR>;
#[doc = "Writer for register TWCR"]
pub type W = crate::W<u32, super::TWCR>;
#[doc = "Register TWCR `reset()`'s with value 0"]
impl crate::ResetValue for super::TWCR {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Reader of field `TOTALW`"]
pub type TOTALW_R = crate::R<u16, u16>;
#[doc = "Write proxy for field `TOTALW`"]
pub struct TOTALW_W<'a> {
    w: &'a mut W,
}
impl<'a> TOTALW_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u16) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x0fff << 16)) | (((value as u32) & 0x0fff) << 16);
        self.w
    }
}
#[doc = "Reader of field `TOTALH`"]
pub type TOTALH_R = crate::R<u16, u16>;
#[doc = "Write proxy for field `TOTALH`"]
pub struct TOTALH_W<'a> {
    w: &'a mut W,
}
impl<'a> TOTALH_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u16) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x07ff) | ((value as u32) & 0x07ff);
        self.w
    }
}
impl R {
    #[doc = "Bits 16:27 - Total Width (in units of pixel clock period)"]
    #[inline(always)]
    pub fn totalw(&self) -> TOTALW_R {
        TOTALW_R::new(((self.bits >> 16) & 0x0fff) as u16)
    }
    #[doc = "Bits 0:10 - Total Height (in units of horizontal scan line)"]
    #[inline(always)]
    pub fn totalh(&self) -> TOTALH_R {
        TOTALH_R::new((self.bits & 0x07ff) as u16)
    }
}
impl W {
    #[doc = "Bits 16:27 - Total Width (in units of pixel clock period)"]
    #[inline(always)]
    pub fn totalw(&mut self) -> TOTALW_W {
        TOTALW_W { w: self }
    }
    #[doc = "Bits 0:10 - Total Height (in units of horizontal scan line)"]
    #[inline(always)]
    pub fn totalh(&mut self) -> TOTALH_W {
        TOTALH_W { w: self }
    }
}