stm32f1_staging/stm32f101/scb_actrl.rs
1#[repr(C)]
2#[derive(Debug)]
3///Register block
4pub struct RegisterBlock {
5 actrl: ACTRL,
6}
7impl RegisterBlock {
8 ///0x00 - Auxiliary control register
9 #[inline(always)]
10 pub const fn actrl(&self) -> &ACTRL {
11 &self.actrl
12 }
13}
14/**ACTRL (rw) register accessor: Auxiliary control register
15
16You can [`read`](crate::Reg::read) this register and get [`actrl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`actrl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
17
18See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F101.html#SCB_ACTRL:ACTRL)
19
20For information about available fields see [`mod@actrl`] module*/
21pub type ACTRL = crate::Reg<actrl::ACTRLrs>;
22///Auxiliary control register
23pub mod actrl;