esp32s3/uart0/
mem_rx_status.rs

1#[doc = "Register `MEM_RX_STATUS` reader"]
2pub type R = crate::R<MEM_RX_STATUS_SPEC>;
3#[doc = "Field `APB_RX_RADDR` reader - This register stores the offset address in RX-FIFO when software reads data from Rx-FIFO via APB. UART0 is 10'h200. UART1 is 10'h280. UART2 is 10'h300."]
4pub type APB_RX_RADDR_R = crate::FieldReader<u16>;
5#[doc = "Field `RX_WADDR` reader - This register stores the offset address in Rx-FIFO when Rx-FIFO_Ctrl writes Rx-FIFO. UART0 is 10'h200. UART1 is 10'h280. UART2 is 10'h300."]
6pub type RX_WADDR_R = crate::FieldReader<u16>;
7impl R {
8    #[doc = "Bits 0:9 - This register stores the offset address in RX-FIFO when software reads data from Rx-FIFO via APB. UART0 is 10'h200. UART1 is 10'h280. UART2 is 10'h300."]
9    #[inline(always)]
10    pub fn apb_rx_raddr(&self) -> APB_RX_RADDR_R {
11        APB_RX_RADDR_R::new((self.bits & 0x03ff) as u16)
12    }
13    #[doc = "Bits 11:20 - This register stores the offset address in Rx-FIFO when Rx-FIFO_Ctrl writes Rx-FIFO. UART0 is 10'h200. UART1 is 10'h280. UART2 is 10'h300."]
14    #[inline(always)]
15    pub fn rx_waddr(&self) -> RX_WADDR_R {
16        RX_WADDR_R::new(((self.bits >> 11) & 0x03ff) as u16)
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("apb_rx_raddr", &self.apb_rx_raddr())
24            .field("rx_waddr", &self.rx_waddr())
25            .finish()
26    }
27}
28#[doc = "Rx-FIFO write and read offset address.\n\nYou can [`read`](crate::Reg::read) this register and get [`mem_rx_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
29pub struct MEM_RX_STATUS_SPEC;
30impl crate::RegisterSpec for MEM_RX_STATUS_SPEC {
31    type Ux = u32;
32}
33#[doc = "`read()` method returns [`mem_rx_status::R`](R) reader structure"]
34impl crate::Readable for MEM_RX_STATUS_SPEC {}
35#[doc = "`reset()` method sets MEM_RX_STATUS to value 0x0010_0200"]
36impl crate::Resettable for MEM_RX_STATUS_SPEC {
37    const RESET_VALUE: u32 = 0x0010_0200;
38}