esp32c3/
fe2.rs

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