Enum avr_device::atmega4809::fuse::syscfg0::CRCSRC_A
source · #[repr(u8)]pub enum CRCSRC_A {
FLASH = 0,
BOOT = 1,
BOOTAPP = 2,
NOCRC = 3,
}
Expand description
CRC Source
Value on reset: 0
Variants§
FLASH = 0
0: The CRC is performed on the entire Flash (boot, application code and application data section).
BOOT = 1
1: The CRC is performed on the boot section of Flash
BOOTAPP = 2
2: The CRC is performed on the boot and application code section of Flash
NOCRC = 3
3: Disable CRC.
Trait Implementations§
source§impl PartialEq for CRCSRC_A
impl PartialEq for CRCSRC_A
impl Copy for CRCSRC_A
impl Eq for CRCSRC_A
impl StructuralPartialEq for CRCSRC_A
Auto Trait Implementations§
impl RefUnwindSafe for CRCSRC_A
impl Send for CRCSRC_A
impl Sync for CRCSRC_A
impl Unpin for CRCSRC_A
impl UnwindSafe for CRCSRC_A
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more