Skip to main content

ResetInterface

Trait ResetInterface 

Source
pub trait ResetInterface {
    type Error;

    // Required method
    fn reset(&mut self) -> Result<(), Self::Error>;
}
Expand description

Hardware reset control for the ST77916.

Required Associated Types§

Required Methods§

Source

fn reset(&mut self) -> Result<(), Self::Error>

Perform the hardware reset sequence.

Per the ST77916 datasheet (Section 7.4.7, p.42): pull RESX low for >= 10us, then high, then wait >= 120ms before commands.

Implementors§