gd32f4pac 0.9.2

Device support crate for GD32F4 devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    mac_fcth: MacFcth,
}
impl RegisterBlock {
    #[doc = "0x00 - Ethernet MAC flow control threshold register"]
    #[inline(always)]
    pub const fn mac_fcth(&self) -> &MacFcth {
        &self.mac_fcth
    }
}
#[doc = "MAC_FCTH (rw) register accessor: Ethernet MAC flow control threshold register\n\nYou can [`read`](crate::Reg::read) this register and get [`mac_fcth::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`mac_fcth::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@mac_fcth`] module"]
#[doc(alias = "MAC_FCTH")]
pub type MacFcth = crate::Reg<mac_fcth::MacFcthSpec>;
#[doc = "Ethernet MAC flow control threshold register"]
pub mod mac_fcth;