aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoël Schulz-Ansres <[email protected]>2024-05-02 13:50:07 +0200
committerJoël Schulz-Ansres <[email protected]>2024-05-02 13:50:07 +0200
commitf468d84a5b44b1a37d5488f3226848d5cd84d0b7 (patch)
tree074dd43f48439ee0d77f0c7e35944fe87c74c50b
parent9fe50a7639a046bafe9d2003847476cbfd61db1d (diff)
Cargo format
-rw-r--r--embassy-stm32/src/dsihost.rs1
-rw-r--r--embassy-stm32/src/lib.rs4
2 files changed, 3 insertions, 2 deletions
diff --git a/embassy-stm32/src/dsihost.rs b/embassy-stm32/src/dsihost.rs
index c55fa8411..0537d22cf 100644
--- a/embassy-stm32/src/dsihost.rs
+++ b/embassy-stm32/src/dsihost.rs
@@ -241,6 +241,7 @@ impl<'d, T: Instance> DsiHost<'d, T> {
241 }); 241 });
242 } 242 }
243 243
244 /// Read DSI Register
244 pub fn read( 245 pub fn read(
245 &mut self, 246 &mut self,
246 channel_id: u8, 247 channel_id: u8,
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs
index 1f92e8b2a..029e01480 100644
--- a/embassy-stm32/src/lib.rs
+++ b/embassy-stm32/src/lib.rs
@@ -68,8 +68,6 @@ pub mod dac;
68pub mod dcmi; 68pub mod dcmi;
69#[cfg(dsihost)] 69#[cfg(dsihost)]
70pub mod dsihost; 70pub mod dsihost;
71#[cfg(ltdc)]
72pub mod ltdc;
73#[cfg(eth)] 71#[cfg(eth)]
74pub mod eth; 72pub mod eth;
75#[cfg(feature = "exti")] 73#[cfg(feature = "exti")]
@@ -89,6 +87,8 @@ pub mod i2s;
89pub mod ipcc; 87pub mod ipcc;
90#[cfg(feature = "low-power")] 88#[cfg(feature = "low-power")]
91pub mod low_power; 89pub mod low_power;
90#[cfg(ltdc)]
91pub mod ltdc;
92#[cfg(opamp)] 92#[cfg(opamp)]
93pub mod opamp; 93pub mod opamp;
94#[cfg(octospi)] 94#[cfg(octospi)]