esp32p4/lp_uart/
mem_rx_status.rs1#[doc = "Register `MEM_RX_STATUS` reader"]
2pub type R = crate::R<MEM_RX_STATUS_SPEC>;
3#[doc = "Field `RX_SRAM_RADDR` reader - This register stores the offset read address in RX-SRAM."]
4pub type RX_SRAM_RADDR_R = crate::FieldReader;
5#[doc = "Field `RX_SRAM_WADDR` reader - This register stores the offset write address in Rx-SRAM."]
6pub type RX_SRAM_WADDR_R = crate::FieldReader;
7impl R {
8 #[doc = "Bits 3:7 - This register stores the offset read address in RX-SRAM."]
9 #[inline(always)]
10 pub fn rx_sram_raddr(&self) -> RX_SRAM_RADDR_R {
11 RX_SRAM_RADDR_R::new(((self.bits >> 3) & 0x1f) as u8)
12 }
13 #[doc = "Bits 12:16 - This register stores the offset write address in Rx-SRAM."]
14 #[inline(always)]
15 pub fn rx_sram_waddr(&self) -> RX_SRAM_WADDR_R {
16 RX_SRAM_WADDR_R::new(((self.bits >> 12) & 0x1f) as u8)
17 }
18}
19#[cfg(feature = "impl-register-debug")]
20impl core::fmt::Debug for R {
21 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
22 f.debug_struct("MEM_RX_STATUS")
23 .field(
24 "rx_sram_raddr",
25 &format_args!("{}", self.rx_sram_raddr().bits()),
26 )
27 .field(
28 "rx_sram_waddr",
29 &format_args!("{}", self.rx_sram_waddr().bits()),
30 )
31 .finish()
32 }
33}
34#[cfg(feature = "impl-register-debug")]
35impl core::fmt::Debug for crate::generic::Reg<MEM_RX_STATUS_SPEC> {
36 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
37 core::fmt::Debug::fmt(&self.read(), f)
38 }
39}
40#[doc = "Rx-SRAM write and read offset address.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_rx_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
41pub struct MEM_RX_STATUS_SPEC;
42impl crate::RegisterSpec for MEM_RX_STATUS_SPEC {
43 type Ux = u32;
44}
45#[doc = "`read()` method returns [`mem_rx_status::R`](R) reader structure"]
46impl crate::Readable for MEM_RX_STATUS_SPEC {}
47#[doc = "`reset()` method sets MEM_RX_STATUS to value 0x0001_0080"]
48impl crate::Resettable for MEM_RX_STATUS_SPEC {
49 const RESET_VALUE: u32 = 0x0001_0080;
50}