Embassy
embassy-embedded-hal

Crates

git

Versions

default

Flavors

Trait embassy_embedded_hal::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§