#[non_exhaustive]pub enum FlexSpi {
FlexSpi1,
FlexSpi2,
}Expand description
The FlexSPI peripheral that interfaces your flash chip.
The RuntimeBuilder selects FlexSpi1 for nearly all chip
families. However, it selects FlexSpi2 for the 1064 in order
to utilize its on-board flash. You can override the selection
using RuntimeBuilder::flexspi().
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for FlexSpi
impl Eq for FlexSpi
impl StructuralPartialEq for FlexSpi
Auto Trait Implementations§
impl Freeze for FlexSpi
impl RefUnwindSafe for FlexSpi
impl Send for FlexSpi
impl Sync for FlexSpi
impl Unpin for FlexSpi
impl UnwindSafe for FlexSpi
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