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
///Register block
#[repr(C)]
pub struct RegisterBlock {
    ///0x00 - COMP control and status register
    pub csr: CSR,
    ///0x04 - Comparator Filter register
    pub fr: FR,
}
///CSR (rw) register accessor: an alias for `Reg<CSR_SPEC>`
pub type CSR = crate::Reg<csr::CSR_SPEC>;
///COMP control and status register
pub mod csr;
///FR (rw) register accessor: an alias for `Reg<FR_SPEC>`
pub type FR = crate::Reg<fr::FR_SPEC>;
///Comparator Filter register
pub mod fr;