msp430fr5962/
ref_a.rs

1#[repr(C)]
2#[doc = "Register block"]
3pub struct RegisterBlock {
4    refctl0: Refctl0,
5}
6impl RegisterBlock {
7    #[doc = "0x00 - REF Control Register 0"]
8    #[inline(always)]
9    pub const fn refctl0(&self) -> &Refctl0 {
10        &self.refctl0
11    }
12}
13#[doc = "REFCTL0 (rw) register accessor: REF Control Register 0\n\nYou can [`read`](crate::Reg::read) this register and get [`refctl0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`refctl0::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@refctl0`]
14module"]
15#[doc(alias = "REFCTL0")]
16pub type Refctl0 = crate::Reg<refctl0::Refctl0Spec>;
17#[doc = "REF Control Register 0"]
18pub mod refctl0;