Skip to content

Commit

Permalink
rp235x|rp2040: Fix watchdog example comments.
Browse files Browse the repository at this point in the history
Both examples had a typo in the comments.
  • Loading branch information
thejpster committed Aug 22, 2024
1 parent 270a1db commit 95e0529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rp2040-hal-examples/src/bin/watchdog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ fn main() -> ! {
watchdog.feed();
}

// Blink 10 times per second, not feeding the watchdog.
// Blink 5 times per second, not feeding the watchdog.
// The processor should reset in 1.05 seconds, or 5 blinks time
loop {
led_pin.set_low().unwrap();
Expand Down
2 changes: 1 addition & 1 deletion rp235x-hal-examples/src/bin/watchdog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fn main() -> ! {
watchdog.feed();
}

// Blink 10 times per second, not feeding the watchdog.
// Blink 5 times per second, not feeding the watchdog.
// The processor should reset in 1.05 seconds, or 5 blinks time
loop {
led_pin.set_low().unwrap();
Expand Down

0 comments on commit 95e0529

Please sign in to comment.