d1_pac/csic/csic_top/
csic_ptn_isp_size.rs1#[doc = "Register `csic_ptn_isp_size` reader"]
2pub type R = crate::R<CSIC_PTN_ISP_SIZE_SPEC>;
3#[doc = "Register `csic_ptn_isp_size` writer"]
4pub type W = crate::W<CSIC_PTN_ISP_SIZE_SPEC>;
5#[doc = "Field `width` reader - Width Horizontal size, only valid for ISP mode pattern generation."]
6pub type WIDTH_R = crate::FieldReader<u16>;
7#[doc = "Field `width` writer - Width Horizontal size, only valid for ISP mode pattern generation."]
8pub type WIDTH_W<'a, REG> = crate::FieldWriter<'a, REG, 13, u16>;
9#[doc = "Field `height` reader - Height Vertical size, only valid for ISP mode pattern generation."]
10pub type HEIGHT_R = crate::FieldReader<u16>;
11#[doc = "Field `height` writer - Height Vertical size, only valid for ISP mode pattern generation."]
12pub type HEIGHT_W<'a, REG> = crate::FieldWriter<'a, REG, 13, u16>;
13impl R {
14 #[doc = "Bits 0:12 - Width Horizontal size, only valid for ISP mode pattern generation."]
15 #[inline(always)]
16 pub fn width(&self) -> WIDTH_R {
17 WIDTH_R::new((self.bits & 0x1fff) as u16)
18 }
19 #[doc = "Bits 16:28 - Height Vertical size, only valid for ISP mode pattern generation."]
20 #[inline(always)]
21 pub fn height(&self) -> HEIGHT_R {
22 HEIGHT_R::new(((self.bits >> 16) & 0x1fff) as u16)
23 }
24}
25impl W {
26 #[doc = "Bits 0:12 - Width Horizontal size, only valid for ISP mode pattern generation."]
27 #[inline(always)]
28 #[must_use]
29 pub fn width(&mut self) -> WIDTH_W<CSIC_PTN_ISP_SIZE_SPEC> {
30 WIDTH_W::new(self, 0)
31 }
32 #[doc = "Bits 16:28 - Height Vertical size, only valid for ISP mode pattern generation."]
33 #[inline(always)]
34 #[must_use]
35 pub fn height(&mut self) -> HEIGHT_W<CSIC_PTN_ISP_SIZE_SPEC> {
36 HEIGHT_W::new(self, 16)
37 }
38 #[doc = r" Writes raw bits to the register."]
39 #[doc = r""]
40 #[doc = r" # Safety"]
41 #[doc = r""]
42 #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
43 #[inline(always)]
44 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
45 self.bits = bits;
46 self
47 }
48}
49#[doc = "CSIC Pattern ISP Size Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csic_ptn_isp_size::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 [`csic_ptn_isp_size::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
50pub struct CSIC_PTN_ISP_SIZE_SPEC;
51impl crate::RegisterSpec for CSIC_PTN_ISP_SIZE_SPEC {
52 type Ux = u32;
53}
54#[doc = "`read()` method returns [`csic_ptn_isp_size::R`](R) reader structure"]
55impl crate::Readable for CSIC_PTN_ISP_SIZE_SPEC {}
56#[doc = "`write(|w| ..)` method takes [`csic_ptn_isp_size::W`](W) writer structure"]
57impl crate::Writable for CSIC_PTN_ISP_SIZE_SPEC {
58 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
59 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
60}
61#[doc = "`reset()` method sets csic_ptn_isp_size to value 0"]
62impl crate::Resettable for CSIC_PTN_ISP_SIZE_SPEC {
63 const RESET_VALUE: Self::Ux = 0;
64}