1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    platform: PLATFORM,
}
impl RegisterBlock {
    #[doc = "0x00 - Indicates the type of platform in use"]
    #[inline(always)]
    pub const fn platform(&self) -> &PLATFORM {
        &self.platform
    }
}
#[doc = "PLATFORM (r) register accessor: Indicates the type of platform in use  

You can [`read`](crate::generic::Reg::read) this register and get [`platform::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).  

For information about available fields see [`mod@platform`]
module"]
pub type PLATFORM = crate::Reg<platform::PLATFORM_SPEC>;
#[doc = "Indicates the type of platform in use"]
pub mod platform;