stm32f2 0.8.0

Device support crates for STM32F2 devices
Documentation
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Data register"]
    pub dr: DR,
    #[doc = "0x04 - Independent data register"]
    pub idr: IDR,
    #[doc = "0x08 - Control register"]
    pub cr: CR,
}
#[doc = "Data register"]
pub struct DR {
    register: vcell::VolatileCell<u32>,
}
#[doc = "Data register"]
pub mod dr;
#[doc = "Independent data register"]
pub struct IDR {
    register: vcell::VolatileCell<u32>,
}
#[doc = "Independent data register"]
pub mod idr;
#[doc = "Control register"]
pub struct CR {
    register: vcell::VolatileCell<u32>,
}
#[doc = "Control register"]
pub mod cr;