Skip to main content

Configuration

Struct Configuration 

Source
#[non_exhaustive]
pub struct Configuration { pub command_timeout_ms: u32, pub io_voltage: Voltage, pub speed_khz: u32, pub input_delay_phase: DelayPhase, pub driver_strength: DriverStrength, pub current_limit: CurrentLimit, }
Expand description

Configuration for the SD-Card driver

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§command_timeout_ms: u32

Command timeout in milliseconds. Default is 0 (no timeout)

§io_voltage: Voltage

SD-Card IO voltage. Default is 3.3V; 1.8V might only be necessary for ESP32P4 and UHS-I speeds

§speed_khz: u32

SD-Card speed in kHz. Default is 20000 kHz (20 MHz) Maximum speed is usually 40000 kHz (40 MHz) Speeds lower than 20000 kHz can also be used

§input_delay_phase: DelayPhase§driver_strength: DriverStrength§current_limit: CurrentLimit

Implementations§

Source§

impl Configuration

Source

pub const fn new() -> Self

Create a new configuration with default values

Trait Implementations§

Source§

impl Default for Configuration

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Configuration

§

impl RefUnwindSafe for Configuration

§

impl Send for Configuration

§

impl Sync for Configuration

§

impl Unpin for Configuration

§

impl UnsafeUnpin for Configuration

§

impl UnwindSafe for Configuration

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.