cc430f5137 0.1.0

Peripheral access API for CC430F5137 microcontroller
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    rcctl0: Rcctl0,
}
impl RegisterBlock {
    #[doc = "0x00 - Ram Controller Control Register"]
    #[inline(always)]
    pub const fn rcctl0(&self) -> &Rcctl0 {
        &self.rcctl0
    }
}
#[doc = "RCCTL0 (rw) register accessor: Ram Controller Control Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rcctl0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`rcctl0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rcctl0`] module"]
#[doc(alias = "RCCTL0")]
pub type Rcctl0 = crate::Reg<rcctl0::Rcctl0Spec>;
#[doc = "Ram Controller Control Register"]
pub mod rcctl0;