py32f0 0.2.1

Device support crates for PY32F0 devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
///Register block
#[repr(C)]
pub struct RegisterBlock {
    _reserved0: [u8; 0x30],
    ///0x30 - CR0 register
    pub cr0: CR0,
    ///0x34 - CR1 register
    pub cr1: CR1,
}
///CR0 (rw) register accessor: an alias for `Reg<CR0_SPEC>`
pub type CR0 = crate::Reg<cr0::CR0_SPEC>;
///CR0 register
pub mod cr0;
///CR1 (rw) register accessor: an alias for `Reg<CR1_SPEC>`
pub type CR1 = crate::Reg<cr1::CR1_SPEC>;
///CR1 register
pub mod cr1;