esp32s3/uart0/
mem_tx_status.rs1#[doc = "Register `MEM_TX_STATUS` reader"]
2pub type R = crate::R<MEM_TX_STATUS_SPEC>;
3#[doc = "Field `APB_TX_WADDR` reader - This register stores the offset address in Tx-FIFO when software writes Tx-FIFO via APB."]
4pub type APB_TX_WADDR_R = crate::FieldReader<u16>;
5#[doc = "Field `TX_RADDR` reader - This register stores the offset address in Tx-FIFO when Tx-FSM reads data via Tx-FIFO_Ctrl."]
6pub type TX_RADDR_R = crate::FieldReader<u16>;
7impl R {
8 #[doc = "Bits 0:9 - This register stores the offset address in Tx-FIFO when software writes Tx-FIFO via APB."]
9 #[inline(always)]
10 pub fn apb_tx_waddr(&self) -> APB_TX_WADDR_R {
11 APB_TX_WADDR_R::new((self.bits & 0x03ff) as u16)
12 }
13 #[doc = "Bits 11:20 - This register stores the offset address in Tx-FIFO when Tx-FSM reads data via Tx-FIFO_Ctrl."]
14 #[inline(always)]
15 pub fn tx_raddr(&self) -> TX_RADDR_R {
16 TX_RADDR_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_TX_STATUS")
23 .field("apb_tx_waddr", &self.apb_tx_waddr())
24 .field("tx_raddr", &self.tx_raddr())
25 .finish()
26 }
27}
28#[doc = "Tx-FIFO write and read offset address.\n\nYou can [`read`](crate::Reg::read) this register and get [`mem_tx_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
29pub struct MEM_TX_STATUS_SPEC;
30impl crate::RegisterSpec for MEM_TX_STATUS_SPEC {
31 type Ux = u32;
32}
33#[doc = "`read()` method returns [`mem_tx_status::R`](R) reader structure"]
34impl crate::Readable for MEM_TX_STATUS_SPEC {}
35#[doc = "`reset()` method sets MEM_TX_STATUS to value 0"]
36impl crate::Resettable for MEM_TX_STATUS_SPEC {
37 const RESET_VALUE: u32 = 0;
38}