stm32mp1 0.16.0

Device support crates for STM32MP1 devices
Documentation
///Register `TX_SINGLE_COLLISION_GOOD_PACKETS` reader
pub type R = crate::R<TX_SINGLE_COLLISION_GOOD_PACKETSrs>;
///Field `TXSNGLCOLG` reader - TXSNGLCOLG
pub type TXSNGLCOLG_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - TXSNGLCOLG
    #[inline(always)]
    pub fn txsnglcolg(&self) -> TXSNGLCOLG_R {
        TXSNGLCOLG_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("TX_SINGLE_COLLISION_GOOD_PACKETS")
            .field("txsnglcolg", &self.txsnglcolg())
            .finish()
    }
}
/**This register provides the number of successfully transmitted packets by Ethernet peripheral after a single collision in the half-duplex mode.

You can [`read`](crate::Reg::read) this register and get [`tx_single_collision_good_packets::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP153.html#ETH_MAC_MMC:TX_SINGLE_COLLISION_GOOD_PACKETS)*/
pub struct TX_SINGLE_COLLISION_GOOD_PACKETSrs;
impl crate::RegisterSpec for TX_SINGLE_COLLISION_GOOD_PACKETSrs {
    type Ux = u32;
}
///`read()` method returns [`tx_single_collision_good_packets::R`](R) reader structure
impl crate::Readable for TX_SINGLE_COLLISION_GOOD_PACKETSrs {}
///`reset()` method sets TX_SINGLE_COLLISION_GOOD_PACKETS to value 0
impl crate::Resettable for TX_SINGLE_COLLISION_GOOD_PACKETSrs {}