Skip to content

Commit

Permalink
Use hal::Timer to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
9names committed Aug 20, 2024
1 parent 5124f5d commit 466be69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rp2040-hal-examples/src/bin/spi_eh_bus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ fn main() -> ! {
// Construct a timer object, which we will need later.
// ========================================================================

let timer = rp2040_hal::Timer::new(p.TIMER, &mut p.RESETS, &clocks);
let timer = hal::Timer::new(p.TIMER, &mut p.RESETS, &clocks);

// ========================================================================
// Set up a UART so we can print out the values we read using our *Device
Expand Down

0 comments on commit 466be69

Please sign in to comment.