pub struct RawUserpage<T>(pub T);
Expand description
Raw userpage POD struct that exposes bitfields via methods
Tuple Fields§
§0: T
Implementations§
Source§impl<T: AsMut<[u8]> + AsRef<[u8]>> RawUserpage<T>
impl<T: AsMut<[u8]> + AsRef<[u8]>> RawUserpage<T>
Sourcepub fn bod33_disable(&self) -> bool
pub fn bod33_disable(&self) -> bool
Access the bod33_disable
field
Sourcepub fn set_bod33_disable(&mut self, value: bool)
pub fn set_bod33_disable(&mut self, value: bool)
Access the bod33_disable
field
Sourcepub fn bod33_level(&self) -> u8
pub fn bod33_level(&self) -> u8
Access the bod33_level
field
Sourcepub fn set_bod33_level(&mut self, value: u8)
pub fn set_bod33_level(&mut self, value: u8)
Access the bod33_level
field
Sourcepub fn bod33_action(&self) -> u8
pub fn bod33_action(&self) -> u8
Access the bod33_action
field
Sourcepub fn set_bod33_action(&mut self, value: u8)
pub fn set_bod33_action(&mut self, value: u8)
Access the bod33_action
field
Sourcepub fn bod33_hysteresis(&self) -> u8
pub fn bod33_hysteresis(&self) -> u8
Access the bod33_hysteresis
field
Sourcepub fn set_bod33_hysteresis(&mut self, value: u8)
pub fn set_bod33_hysteresis(&mut self, value: u8)
Access the bod33_hysteresis
field
Sourcepub fn bod12_calibration_parameters(&self) -> u16
pub fn bod12_calibration_parameters(&self) -> u16
Access the bod12_calibration_parameters
field
Sourcepub fn set_bod12_calibration_parameters(&mut self, value: u16)
pub fn set_bod12_calibration_parameters(&mut self, value: u16)
Access the bod12_calibration_parameters
field
Sourcepub fn nvm_bootloader_size(&self) -> u8
pub fn nvm_bootloader_size(&self) -> u8
Access the nvm_bootloader_size
field
Sourcepub fn set_nvm_bootloader_size(&mut self, value: u8)
pub fn set_nvm_bootloader_size(&mut self, value: u8)
Access the nvm_bootloader_size
field
Sourcepub fn reserved_0(&self) -> u8
pub fn reserved_0(&self) -> u8
Access the reserved_0
field
Sourcepub fn set_reserved_0(&mut self, value: u8)
pub fn set_reserved_0(&mut self, value: u8)
Access the reserved_0
field
Sourcepub fn set_see_sblk(&mut self, value: u8)
pub fn set_see_sblk(&mut self, value: u8)
Access the see_sblk
field
Sourcepub fn set_see_psz(&mut self, value: u8)
pub fn set_see_psz(&mut self, value: u8)
Access the see_psz
field
Sourcepub fn ram_ecc_disable(&self) -> bool
pub fn ram_ecc_disable(&self) -> bool
Access the ram_ecc_disable
field
Sourcepub fn set_ram_ecc_disable(&mut self, value: bool)
pub fn set_ram_ecc_disable(&mut self, value: bool)
Access the ram_ecc_disable
field
Sourcepub fn reserved_1(&self) -> u8
pub fn reserved_1(&self) -> u8
Access the reserved_1
field
Sourcepub fn set_reserved_1(&mut self, value: u8)
pub fn set_reserved_1(&mut self, value: u8)
Access the reserved_1
field
Sourcepub fn wdt_enable(&self) -> bool
pub fn wdt_enable(&self) -> bool
Access the wdt_enable
field
Sourcepub fn set_wdt_enable(&mut self, value: bool)
pub fn set_wdt_enable(&mut self, value: bool)
Access the wdt_enable
field
Sourcepub fn wdt_always_on(&self) -> bool
pub fn wdt_always_on(&self) -> bool
Access the wdt_always_on
field
Sourcepub fn set_wdt_always_on(&mut self, value: bool)
pub fn set_wdt_always_on(&mut self, value: bool)
Access the wdt_always_on
field
Sourcepub fn wdt_period(&self) -> u8
pub fn wdt_period(&self) -> u8
Access the wdt_period
field
Sourcepub fn set_wdt_period(&mut self, value: u8)
pub fn set_wdt_period(&mut self, value: u8)
Access the wdt_period
field
Sourcepub fn wdt_window(&self) -> u8
pub fn wdt_window(&self) -> u8
Access the wdt_window
field
Sourcepub fn set_wdt_window(&mut self, value: u8)
pub fn set_wdt_window(&mut self, value: u8)
Access the wdt_window
field
Sourcepub fn wdt_ewoffset(&self) -> u8
pub fn wdt_ewoffset(&self) -> u8
Access the wdt_ewoffset
field
Sourcepub fn set_wdt_ewoffset(&mut self, value: u8)
pub fn set_wdt_ewoffset(&mut self, value: u8)
Access the wdt_ewoffset
field
Sourcepub fn set_wdt_wen(&mut self, value: bool)
pub fn set_wdt_wen(&mut self, value: bool)
Access the wdt_wen
field
Sourcepub fn reserved_2(&self) -> bool
pub fn reserved_2(&self) -> bool
Access the reserved_2
field
Sourcepub fn set_reserved_2(&mut self, value: bool)
pub fn set_reserved_2(&mut self, value: bool)
Access the reserved_2
field
Sourcepub fn set_nvm_locks(&mut self, value: u32)
pub fn set_nvm_locks(&mut self, value: u32)
Access the nvm_locks
field
Sourcepub fn userpage_0(&self) -> u32
pub fn userpage_0(&self) -> u32
Access the userpage_0
field
Sourcepub fn set_userpage_0(&mut self, value: u32)
pub fn set_userpage_0(&mut self, value: u32)
Access the userpage_0
field
Sourcepub fn reserved_3(&self) -> u32
pub fn reserved_3(&self) -> u32
Access the reserved_3
field
Sourcepub fn set_reserved_3(&mut self, value: u32)
pub fn set_reserved_3(&mut self, value: u32)
Access the reserved_3
field
Source§impl<T: AsRef<[u8]>> RawUserpage<T>
impl<T: AsRef<[u8]>> RawUserpage<T>
Sourcepub fn userpage1_as_slice(&self) -> &[u8]
pub fn userpage1_as_slice(&self) -> &[u8]
Access the general purpose user-writable section of the userpage via slice
Source§impl<T: AsMut<[u8]>> RawUserpage<T>
impl<T: AsMut<[u8]>> RawUserpage<T>
Sourcepub fn userpage1_as_slice_mut(&mut self) -> &mut [u8]
pub fn userpage1_as_slice_mut(&mut self) -> &mut [u8]
Access the general purpose user-writable section of the userpage via mutable slice
Trait Implementations§
Source§impl<T: Clone> Clone for RawUserpage<T>
impl<T: Clone> Clone for RawUserpage<T>
Source§fn clone(&self) -> RawUserpage<T>
fn clone(&self) -> RawUserpage<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more