esp32p4/uart0/
mem_tx_status.rs1#[doc = "Register `MEM_TX_STATUS` reader"]
2pub type R = crate::R<MEM_TX_STATUS_SPEC>;
3#[doc = "Field `TX_SRAM_WADDR` reader - This register stores the offset write address in Tx-SRAM."]
4pub type TX_SRAM_WADDR_R = crate::FieldReader;
5#[doc = "Field `TX_SRAM_RADDR` reader - This register stores the offset read address in Tx-SRAM."]
6pub type TX_SRAM_RADDR_R = crate::FieldReader;
7impl R {
8 #[doc = "Bits 0:7 - This register stores the offset write address in Tx-SRAM."]
9 #[inline(always)]
10 pub fn tx_sram_waddr(&self) -> TX_SRAM_WADDR_R {
11 TX_SRAM_WADDR_R::new((self.bits & 0xff) as u8)
12 }
13 #[doc = "Bits 9:16 - This register stores the offset read address in Tx-SRAM."]
14 #[inline(always)]
15 pub fn tx_sram_raddr(&self) -> TX_SRAM_RADDR_R {
16 TX_SRAM_RADDR_R::new(((self.bits >> 9) & 0xff) 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_TX_STATUS")
23 .field(
24 "tx_sram_waddr",
25 &format_args!("{}", self.tx_sram_waddr().bits()),
26 )
27 .field(
28 "tx_sram_raddr",
29 &format_args!("{}", self.tx_sram_raddr().bits()),
30 )
31 .finish()
32 }
33}
34#[cfg(feature = "impl-register-debug")]
35impl core::fmt::Debug for crate::generic::Reg<MEM_TX_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 = "Tx-SRAM write and read offset address.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_tx_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
41pub struct MEM_TX_STATUS_SPEC;
42impl crate::RegisterSpec for MEM_TX_STATUS_SPEC {
43 type Ux = u32;
44}
45#[doc = "`read()` method returns [`mem_tx_status::R`](R) reader structure"]
46impl crate::Readable for MEM_TX_STATUS_SPEC {}
47#[doc = "`reset()` method sets MEM_TX_STATUS to value 0"]
48impl crate::Resettable for MEM_TX_STATUS_SPEC {
49 const RESET_VALUE: u32 = 0;
50}