Skip to content

Commit

Permalink
fix(examples): wrong fn name
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Oct 28, 2023
1 parent 3e0ff6a commit fbc26a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/embassy-gpio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async fn main(spawner: Spawner) -> ! {
// GPIO
spawner.spawn(blink(p.PB4.degrade())).unwrap();

spawner.spawn(blink(p.PB23.degrade())).unwrap();
spawner.spawn(reset_if_requested(p.PB23.degrade())).unwrap();

let mut boot_btn = Input::new(p.PB22, Pull::Up);

Expand Down

0 comments on commit fbc26a5

Please sign in to comment.