stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
#[repr(C)]
#[derive(Debug)]
///Cluster KEY%s, containing K?LR, K?RR
pub struct KEY {
    klr: KLR,
    krr: KRR,
}
impl KEY {
    ///0x00 - CRYP key register 0L
    #[inline(always)]
    pub const fn klr(&self) -> &KLR {
        &self.klr
    }
    ///0x04 - CRYP key register 0R
    #[inline(always)]
    pub const fn krr(&self) -> &KRR {
        &self.krr
    }
}
/**KLR (w) register accessor: CRYP key register 0L

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`klr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

For information about available fields see [`mod@klr`] module*/
pub type KLR = crate::Reg<klr::KLRrs>;
///CRYP key register 0L
pub mod klr;
/**KRR (w) register accessor: CRYP key register 0R

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`krr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

For information about available fields see [`mod@krr`] module*/
pub type KRR = crate::Reg<krr::KRRrs>;
///CRYP key register 0R
pub mod krr;