embassy-embedded-hal

Crates

git

Versions

default

Flavors

embassy_embedded_hal

Trait GetConfig

source
pub trait GetConfig {
    type Config;

    // Required method
    fn get_config(&self) -> Self::Config;
}
Expand description

Get the configuration of a peripheral driver.

Required Associated Types§

source

type Config

The configuration type used by this driver.

Required Methods§

source

fn get_config(&self) -> Self::Config

Get the configuration of the driver.

Implementors§