aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f0/src/bin/button_controlled_blink.rs
diff options
context:
space:
mode:
authorDirk Stolle <[email protected]>2023-05-08 23:25:01 +0200
committerDirk Stolle <[email protected]>2023-05-08 23:25:01 +0200
commit0584312ef0324d2ac67dbb9517176fabf628eec9 (patch)
tree1b6e67474474fad99e7035a8e8898f4fb78656ad /examples/stm32f0/src/bin/button_controlled_blink.rs
parentd0703f83dbe0099c3dca0c912d873365a2188018 (diff)
Fix some typos
Diffstat (limited to 'examples/stm32f0/src/bin/button_controlled_blink.rs')
-rw-r--r--examples/stm32f0/src/bin/button_controlled_blink.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/stm32f0/src/bin/button_controlled_blink.rs b/examples/stm32f0/src/bin/button_controlled_blink.rs
index e1f223433..f362c53f5 100644
--- a/examples/stm32f0/src/bin/button_controlled_blink.rs
+++ b/examples/stm32f0/src/bin/button_controlled_blink.rs
@@ -17,8 +17,8 @@ static BLINK_MS: AtomicU32 = AtomicU32::new(0);
17 17
18#[embassy_executor::task] 18#[embassy_executor::task]
19async fn led_task(led: AnyPin) { 19async fn led_task(led: AnyPin) {
20 // Configure the LED pin as a push pull ouput and obtain handler. 20 // Configure the LED pin as a push pull output and obtain handler.
21 // On the Nucleo F091RC theres an on-board LED connected to pin PA5. 21 // On the Nucleo F091RC there's an on-board LED connected to pin PA5.
22 let mut led = Output::new(led, Level::Low, Speed::Low); 22 let mut led = Output::new(led, Level::Low, Speed::Low);
23 23
24 loop { 24 loop {