Cargo format

This commit is contained in:
Joël Schulz-Ansres 2024-05-02 13:50:07 +02:00
parent 9fe50a7639
commit f468d84a5b
2 changed files with 3 additions and 2 deletions
embassy-stm32/src

View file

@ -241,6 +241,7 @@ impl<'d, T: Instance> DsiHost<'d, T> {
}); });
} }
/// Read DSI Register
pub fn read( pub fn read(
&mut self, &mut self,
channel_id: u8, channel_id: u8,

View file

@ -68,8 +68,6 @@ pub mod dac;
pub mod dcmi; pub mod dcmi;
#[cfg(dsihost)] #[cfg(dsihost)]
pub mod dsihost; pub mod dsihost;
#[cfg(ltdc)]
pub mod ltdc;
#[cfg(eth)] #[cfg(eth)]
pub mod eth; pub mod eth;
#[cfg(feature = "exti")] #[cfg(feature = "exti")]
@ -89,6 +87,8 @@ pub mod i2s;
pub mod ipcc; pub mod ipcc;
#[cfg(feature = "low-power")] #[cfg(feature = "low-power")]
pub mod low_power; pub mod low_power;
#[cfg(ltdc)]
pub mod ltdc;
#[cfg(opamp)] #[cfg(opamp)]
pub mod opamp; pub mod opamp;
#[cfg(octospi)] #[cfg(octospi)]