embassy-stm32

Crates

git

Versions

stm32h757xi-cm7

Flavors

DsiHost

Struct DsiHost 

Source
pub struct DsiHost<'d, T: Instance> { /* private fields */ }
Expand description

DSIHOST driver.

Implementations§

Source§

impl<'d, T: Instance> DsiHost<'d, T>

Source

pub async fn enable_pll(&mut self, config: &DsiHostPllConfig)

Enable the DSIHOST PLL

Source§

impl<'d, T: Instance> DsiHost<'d, T>

Source

pub fn phy_init(&mut self, config: &DsiHostPhyConfig)

Initialize DSI D-PHY

Source§

impl<'d, T: Instance> DsiHost<'d, T>

Source

pub fn set_mode<Panel: DsiPanel>( &mut self, mode: &DsiHostMode, ) -> Result<(), Error>

Set the DSI mode

Source

pub fn ltdc_refresh(&self)

Manual refresh of a frame from LTDC

Source

pub fn enable_pattern_generator(&mut self, enable: bool)

Eneable video mode pattern generator. The DSI host must be initialized in video more before enabling the pattern generator

Source

pub fn debug_registers()

Debug dump registers to defmt

Source§

impl<'d, T: Instance> DsiHost<'d, T>

Source

pub async fn init_panel<Panel: DsiPanel>( &mut self, color: DsiColor, ) -> Result<(), Error>

Initialize the panel using the generic type implementing DsiPanel

Source§

impl<'d, T: Instance> DsiHost<'d, T>

Source

pub fn new(_peri: Peri<'d, T>, te: Peri<'d, impl TePin<T>>) -> Self

Note: Full-Duplex modes are not supported at this time

Source

pub async fn start_panel<Panel: DsiPanel>( &mut self, pll_config: &DsiHostPllConfig, phy_config: &DsiHostPhyConfig, mode: &DsiHostMode, ) -> Result<(), Error>

Start the DSI host

LTDC should be initialized before starting DSIHOST

  • Enable regulator
  • Initialize PLL and wait for lock
  • Initialize PHY
  • Initialize Mode
  • Initialize Panel
  • Enable DSI peripheral and DSI Wrapper
Source

pub fn get_version(&self) -> u32

Get the DSIHOST hardware version. Found in the reference manual for comparison.

Source

pub fn enable(&mut self)

Set the enable bit in the control register and assert that it has been enabled

Source

pub fn disable(&mut self)

Unset the enable bit in the control register and assert that it has been disabled

Source

pub fn enable_wrapper_dsi(&mut self)

Set the DSI enable bit in the wrapper control register and assert that it has been enabled

Source

pub fn disable_wrapper_dsi(&mut self)

Unset the DSI enable bit in the wrapper control register and assert that it has been disabled

Source

pub async fn enable_regulator(&mut self)

Enable the regulator

Source

pub async fn wait_tear(&mut self)

Wait for a tear interrupt event

Source

pub async fn wait_refresh(&mut self)

Wait for an end of refresh interrupt

Source

pub fn write_cmd( &mut self, channel_id: u8, address: u8, data: &[u8], ) -> Result<(), Error>

DCS or Generic short/long write command

Source

pub fn read( &mut self, channel_id: u8, packet_type: PacketType, read_size: u16, data: &mut [u8], ) -> Result<(), Error>

Read DSI Register

Trait Implementations§

Source§

impl<'d, T: Instance> Drop for DsiHost<'d, T>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'d, T> Freeze for DsiHost<'d, T>

§

impl<'d, T> RefUnwindSafe for DsiHost<'d, T>
where T: RefUnwindSafe,

§

impl<'d, T> Send for DsiHost<'d, T>

§

impl<'d, T> Sync for DsiHost<'d, T>
where T: Sync,

§

impl<'d, T> Unpin for DsiHost<'d, T>

§

impl<'d, T> !UnwindSafe for DsiHost<'d, T>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.