Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lab02/src/bin/ex9.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async fn display_symbol(leds: &mut [Output<'_>; 3], morse_symbol: char) {
// and it will panic if it tries to execute it.
_ => panic!("Unknown mores code symbol {}", morse_symbol),
}
Timer::after_secs(500).await;
Timer::after_millis(500).await;

// Turn off all the LEDs
//
Expand Down
Loading