#[repr(u8)]pub enum MEM_MODE {
MainFlash = 0,
SystemFlash = 1,
Sram = 3,
Fmc = 4,
}
Expand description
Memory mapping selection bits
Value on reset: 0
Variants§
MainFlash = 0
0: Main Flash memory mapped at 0x0000_0000
SystemFlash = 1
1: System Flash memory mapped at 0x0000_0000
Sram = 3
3: Embedded SRAM mapped at 0x0000_0000
Fmc = 4
4: FMC Bank (Only the first two banks) (Available on STM32F303xD/E only)
Trait Implementations§
impl Copy for MEM_MODE
impl Eq for MEM_MODE
impl IsEnum for MEM_MODE
impl StructuralPartialEq for MEM_MODE
Auto Trait Implementations§
impl Freeze for MEM_MODE
impl RefUnwindSafe for MEM_MODE
impl Send for MEM_MODE
impl Sync for MEM_MODE
impl Unpin for MEM_MODE
impl UnwindSafe for MEM_MODE
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