mik32_pac/
boot_manager.rs1#[repr(C)]
2#[doc = "Register block"]
3pub struct RegisterBlock {
4 boot: Boot,
5}
6impl RegisterBlock {
7 #[doc = "0x00 - Регистр режима загрузки"]
8 #[inline(always)]
9 pub const fn boot(&self) -> &Boot {
10 &self.boot
11 }
12}
13#[doc = "BOOT (rw) register accessor: Регистр режима загрузки\n\nYou can [`read`](crate::Reg::read) this register and get [`boot::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`boot::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@boot`] module"]
14#[doc(alias = "BOOT")]
15pub type Boot = crate::Reg<boot::BootSpec>;
16#[doc = "Регистр режима загрузки"]
17pub mod boot;