aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h735/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32h735/src')
-rw-r--r--examples/stm32h735/src/bin/ltdc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32h735/src/bin/ltdc.rs b/examples/stm32h735/src/bin/ltdc.rs
index a36fdef2c..8a99f745d 100644
--- a/examples/stm32h735/src/bin/ltdc.rs
+++ b/examples/stm32h735/src/bin/ltdc.rs
@@ -47,7 +47,7 @@ async fn main(spawner: Spawner) {
47 47
48 // blink the led on another task 48 // blink the led on another task
49 let led = Output::new(p.PC3, Level::High, Speed::Low); 49 let led = Output::new(p.PC3, Level::High, Speed::Low);
50 unwrap!(spawner.spawn(led_task(led))); 50 spawner.spawn(unwrap!(led_task(led)));
51 51
52 // numbers from STMicroelectronics/STM32CubeH7 STM32H735G-DK C-based example 52 // numbers from STMicroelectronics/STM32CubeH7 STM32H735G-DK C-based example
53 const RK043FN48H_HSYNC: u16 = 41; // Horizontal synchronization 53 const RK043FN48H_HSYNC: u16 = 41; // Horizontal synchronization