esp32p4/axi_dma/in_ch/
in_err_eof_des_addr.rs

1#[doc = "Register `IN_ERR_EOF_DES_ADDR` reader"]
2pub type R = crate::R<IN_ERR_EOF_DES_ADDR_SPEC>;
3#[doc = "Field `IN_ERR_EOF_DES_ADDR` reader - This register stores the address of the inlink descriptor when there are some errors in current receiving data. Only used when peripheral is UHCI0."]
4pub type IN_ERR_EOF_DES_ADDR_R = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:31 - This register stores the address of the inlink descriptor when there are some errors in current receiving data. Only used when peripheral is UHCI0."]
7    #[inline(always)]
8    pub fn in_err_eof_des_addr(&self) -> IN_ERR_EOF_DES_ADDR_R {
9        IN_ERR_EOF_DES_ADDR_R::new(self.bits)
10    }
11}
12#[cfg(feature = "impl-register-debug")]
13impl core::fmt::Debug for R {
14    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
15        f.debug_struct("IN_ERR_EOF_DES_ADDR")
16            .field(
17                "in_err_eof_des_addr",
18                &format_args!("{}", self.in_err_eof_des_addr().bits()),
19            )
20            .finish()
21    }
22}
23#[cfg(feature = "impl-register-debug")]
24impl core::fmt::Debug for crate::generic::Reg<IN_ERR_EOF_DES_ADDR_SPEC> {
25    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
26        core::fmt::Debug::fmt(&self.read(), f)
27    }
28}
29#[doc = "Inlink descriptor address when errors occur of Rx channel 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`in_err_eof_des_addr::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
30pub struct IN_ERR_EOF_DES_ADDR_SPEC;
31impl crate::RegisterSpec for IN_ERR_EOF_DES_ADDR_SPEC {
32    type Ux = u32;
33}
34#[doc = "`read()` method returns [`in_err_eof_des_addr::R`](R) reader structure"]
35impl crate::Readable for IN_ERR_EOF_DES_ADDR_SPEC {}
36#[doc = "`reset()` method sets IN_ERR_EOF_DES_ADDR to value 0"]
37impl crate::Resettable for IN_ERR_EOF_DES_ADDR_SPEC {
38    const RESET_VALUE: u32 = 0;
39}