esp32s3/lcd_cam/
lcd_ctrl1.rs

1#[doc = "Register `LCD_CTRL1` reader"]
2pub type R = crate::R<LCD_CTRL1_SPEC>;
3#[doc = "Register `LCD_CTRL1` writer"]
4pub type W = crate::W<LCD_CTRL1_SPEC>;
5#[doc = "Field `LCD_VB_FRONT` reader - It is the vertical blank front porch of a frame."]
6pub type LCD_VB_FRONT_R = crate::FieldReader;
7#[doc = "Field `LCD_VB_FRONT` writer - It is the vertical blank front porch of a frame."]
8pub type LCD_VB_FRONT_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `LCD_HA_WIDTH` reader - It is the horizontal active width of a frame."]
10pub type LCD_HA_WIDTH_R = crate::FieldReader<u16>;
11#[doc = "Field `LCD_HA_WIDTH` writer - It is the horizontal active width of a frame."]
12pub type LCD_HA_WIDTH_W<'a, REG> = crate::FieldWriter<'a, REG, 12, u16>;
13#[doc = "Field `LCD_HT_WIDTH` reader - It is the horizontal total width of a frame."]
14pub type LCD_HT_WIDTH_R = crate::FieldReader<u16>;
15#[doc = "Field `LCD_HT_WIDTH` writer - It is the horizontal total width of a frame."]
16pub type LCD_HT_WIDTH_W<'a, REG> = crate::FieldWriter<'a, REG, 12, u16>;
17impl R {
18    #[doc = "Bits 0:7 - It is the vertical blank front porch of a frame."]
19    #[inline(always)]
20    pub fn lcd_vb_front(&self) -> LCD_VB_FRONT_R {
21        LCD_VB_FRONT_R::new((self.bits & 0xff) as u8)
22    }
23    #[doc = "Bits 8:19 - It is the horizontal active width of a frame."]
24    #[inline(always)]
25    pub fn lcd_ha_width(&self) -> LCD_HA_WIDTH_R {
26        LCD_HA_WIDTH_R::new(((self.bits >> 8) & 0x0fff) as u16)
27    }
28    #[doc = "Bits 20:31 - It is the horizontal total width of a frame."]
29    #[inline(always)]
30    pub fn lcd_ht_width(&self) -> LCD_HT_WIDTH_R {
31        LCD_HT_WIDTH_R::new(((self.bits >> 20) & 0x0fff) as u16)
32    }
33}
34#[cfg(feature = "impl-register-debug")]
35impl core::fmt::Debug for R {
36    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
37        f.debug_struct("LCD_CTRL1")
38            .field("lcd_vb_front", &self.lcd_vb_front())
39            .field("lcd_ha_width", &self.lcd_ha_width())
40            .field("lcd_ht_width", &self.lcd_ht_width())
41            .finish()
42    }
43}
44impl W {
45    #[doc = "Bits 0:7 - It is the vertical blank front porch of a frame."]
46    #[inline(always)]
47    pub fn lcd_vb_front(&mut self) -> LCD_VB_FRONT_W<LCD_CTRL1_SPEC> {
48        LCD_VB_FRONT_W::new(self, 0)
49    }
50    #[doc = "Bits 8:19 - It is the horizontal active width of a frame."]
51    #[inline(always)]
52    pub fn lcd_ha_width(&mut self) -> LCD_HA_WIDTH_W<LCD_CTRL1_SPEC> {
53        LCD_HA_WIDTH_W::new(self, 8)
54    }
55    #[doc = "Bits 20:31 - It is the horizontal total width of a frame."]
56    #[inline(always)]
57    pub fn lcd_ht_width(&mut self) -> LCD_HT_WIDTH_W<LCD_CTRL1_SPEC> {
58        LCD_HT_WIDTH_W::new(self, 20)
59    }
60}
61#[doc = "LCD signal configuration register 1\n\nYou can [`read`](crate::Reg::read) this register and get [`lcd_ctrl1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lcd_ctrl1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
62pub struct LCD_CTRL1_SPEC;
63impl crate::RegisterSpec for LCD_CTRL1_SPEC {
64    type Ux = u32;
65}
66#[doc = "`read()` method returns [`lcd_ctrl1::R`](R) reader structure"]
67impl crate::Readable for LCD_CTRL1_SPEC {}
68#[doc = "`write(|w| ..)` method takes [`lcd_ctrl1::W`](W) writer structure"]
69impl crate::Writable for LCD_CTRL1_SPEC {
70    type Safety = crate::Unsafe;
71    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
72    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
73}
74#[doc = "`reset()` method sets LCD_CTRL1 to value 0"]
75impl crate::Resettable for LCD_CTRL1_SPEC {
76    const RESET_VALUE: u32 = 0;
77}