stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `TXBCF` reader
pub type R = crate::R<TXBCFrs>;
///Field `CF` reader - Cancellation Finished
pub type CF_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - Cancellation Finished
    #[inline(always)]
    pub fn cf(&self) -> CF_R {
        CF_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("TXBCF").field("cf", &self.cf()).finish()
    }
}
/**FDCAN Tx Buffer Cancellation Finished Register

You can [`read`](crate::Reg::read) this register and get [`txbcf::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
pub struct TXBCFrs;
impl crate::RegisterSpec for TXBCFrs {
    type Ux = u32;
}
///`read()` method returns [`txbcf::R`](R) reader structure
impl crate::Readable for TXBCFrs {}
///`reset()` method sets TXBCF to value 0
impl crate::Resettable for TXBCFrs {}