esp32p4/mipi_dsi_bridge/
dpi_config_update.rs

1#[doc = "Register `DPI_CONFIG_UPDATE` writer"]
2pub type W = crate::W<DPI_CONFIG_UPDATE_SPEC>;
3#[doc = "Field `DPI_CONFIG_UPDATE` writer - write 1 to this bit to update dpi config register MIPI_DSI_BRG_DPI_*"]
4pub type DPI_CONFIG_UPDATE_W<'a, REG> = crate::BitWriter<'a, REG>;
5#[cfg(feature = "impl-register-debug")]
6impl core::fmt::Debug for crate::generic::Reg<DPI_CONFIG_UPDATE_SPEC> {
7    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
8        write!(f, "(not readable)")
9    }
10}
11impl W {
12    #[doc = "Bit 0 - write 1 to this bit to update dpi config register MIPI_DSI_BRG_DPI_*"]
13    #[inline(always)]
14    #[must_use]
15    pub fn dpi_config_update(&mut self) -> DPI_CONFIG_UPDATE_W<DPI_CONFIG_UPDATE_SPEC> {
16        DPI_CONFIG_UPDATE_W::new(self, 0)
17    }
18}
19#[doc = "dsi_bridge dpi config update register\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dpi_config_update::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
20pub struct DPI_CONFIG_UPDATE_SPEC;
21impl crate::RegisterSpec for DPI_CONFIG_UPDATE_SPEC {
22    type Ux = u32;
23}
24#[doc = "`write(|w| ..)` method takes [`dpi_config_update::W`](W) writer structure"]
25impl crate::Writable for DPI_CONFIG_UPDATE_SPEC {
26    type Safety = crate::Unsafe;
27    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
28    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
29}
30#[doc = "`reset()` method sets DPI_CONFIG_UPDATE to value 0"]
31impl crate::Resettable for DPI_CONFIG_UPDATE_SPEC {
32    const RESET_VALUE: u32 = 0;
33}