Skip to content

Commit

Permalink
Fix clippy and formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
astapleton committed May 31, 2024
1 parent 957cf43 commit d6af794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/blinky.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ fn main() -> ! {

loop {
dp.GPIOA.odr().write(|w| w.od5().low());
for _ in 0..1_000_0 {
for _ in 0..10_000 {
cortex_m::asm::nop();
}
dp.GPIOA.odr().write(|w| w.od5().high());
for _ in 0..1_000_0 {
for _ in 0..10_000 {
cortex_m::asm::nop();
}
}
Expand Down
1 change: 0 additions & 1 deletion examples/utilities/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//! Utilities for examples
pub mod logger;

0 comments on commit d6af794

Please sign in to comment.