stm32f2 0.16.0

Device support crates for STM32F2 devices
Documentation
///Register `FIFOCNT` reader
pub type R = crate::R<FIFOCNTrs>;
///Field `FIFOCOUNT` reader - Remaining number of words to be written to or read from the FIFO.
pub type FIFOCOUNT_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:23 - Remaining number of words to be written to or read from the FIFO.
    #[inline(always)]
    pub fn fifocount(&self) -> FIFOCOUNT_R {
        FIFOCOUNT_R::new(self.bits & 0x00ff_ffff)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("FIFOCNT")
            .field("fifocount", &self.fifocount())
            .finish()
    }
}
/**FIFO counter register

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

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