Skip to content

Commit

Permalink
Fix inconsistencies after renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
themkat committed Aug 21, 2024
1 parent 78fc701 commit e828a22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
"boards/arduino_nano_connect",
"boards/boardsource-blok",
"boards/pimoroni_badger2040",
"boards/pimoroni-display-pack",
"boards/pimoroni-pico-display-pack",
"boards/pimoroni-pico-explorer",
"boards/pimoroni-pico-lipo-16mb",
"boards/pimoroni-plasma-2040",
Expand Down
4 changes: 2 additions & 2 deletions boards/pimoroni-pico-display-pack/examples/showcase.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use embedded_hal::digital::InputPin;
use embedded_hal_0_2::digital::v2::OutputPin;

use fugit::RateExtU32;
use hal::{clocks::ClockSource, pac::resets::reset, Timer, Watchdog, I2C};
use hal::{clocks::ClockSource, Timer, Watchdog, I2C};
use pimoroni_pico_display_pack::{entry, hal, pac, Buttons, RgbLed};

use panic_halt as _;
Expand All @@ -41,7 +41,7 @@ fn main() -> ! {
let sio = hal::Sio::new(pac.SIO);
let sys_clock_freq = clocks.system_clock.get_freq().to_Hz();
let mut delay = cortex_m::delay::Delay::new(cp.SYST, sys_clock_freq);
let display_pack = pimoroni_pico_display_pack::PimoroniDisplayPack::new(
let display_pack = pimoroni_pico_display_pack::PicoDisplayPack::new(
pac.IO_BANK0,
pac.PADS_BANK0,
sio.gpio_bank0,
Expand Down

0 comments on commit e828a22

Please sign in to comment.