esp32c6/spi0/
registerrnd_eco_low.rs

1#[doc = "Register `REGISTERRND_ECO_LOW` reader"]
2pub type R = crate::R<REGISTERRND_ECO_LOW_SPEC>;
3#[doc = "Field `REGISTERRND_ECO_LOW` reader - ECO low register"]
4pub type REGISTERRND_ECO_LOW_R = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:31 - ECO low register"]
7    #[inline(always)]
8    pub fn registerrnd_eco_low(&self) -> REGISTERRND_ECO_LOW_R {
9        REGISTERRND_ECO_LOW_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("REGISTERRND_ECO_LOW")
16            .field("registerrnd_eco_low", &self.registerrnd_eco_low())
17            .finish()
18    }
19}
20#[doc = "MSPI ECO low register\n\nYou can [`read`](crate::Reg::read) this register and get [`registerrnd_eco_low::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
21pub struct REGISTERRND_ECO_LOW_SPEC;
22impl crate::RegisterSpec for REGISTERRND_ECO_LOW_SPEC {
23    type Ux = u32;
24}
25#[doc = "`read()` method returns [`registerrnd_eco_low::R`](R) reader structure"]
26impl crate::Readable for REGISTERRND_ECO_LOW_SPEC {}
27#[doc = "`reset()` method sets REGISTERRND_ECO_LOW to value 0x037c"]
28impl crate::Resettable for REGISTERRND_ECO_LOW_SPEC {
29    const RESET_VALUE: u32 = 0x037c;
30}