esp32c2/
rng.rs

1#[repr(C)]
2#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
3#[doc = "Register block"]
4pub struct RegisterBlock {
5    _reserved0: [u8; 0xb0],
6    data: DATA,
7}
8impl RegisterBlock {
9    #[doc = "0xb0 - Random number data"]
10    #[inline(always)]
11    pub const fn data(&self) -> &DATA {
12        &self.data
13    }
14}
15#[doc = "DATA (r) register accessor: Random number data\n\nYou can [`read`](crate::Reg::read) this register and get [`data::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@data`] module"]
16pub type DATA = crate::Reg<data::DATA_SPEC>;
17#[doc = "Random number data"]
18pub mod data;