Skip to content

Commit

Permalink
Fix feather_m4 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeaurivage committed Apr 29, 2024
1 parent 3130bac commit b9591cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boards/feather_m4/examples/serial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use bsp::{entry, periph_alias, pin_alias};
use hal::clock::GenericClockController;
use hal::delay::Delay;
use hal::ehal::delay::DelayNs;
use hal::embedded_hal_nb::serial::Write;
use hal::ehal_nb::serial::Write;
use hal::fugit::RateExtU32;
use hal::nb;
use hal::pac::gclk::genctrl::SRCSELECT_A;
Expand Down
2 changes: 1 addition & 1 deletion boards/feather_m4/examples/uart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use feather_m4 as bsp;
use bsp::{entry, periph_alias, pin_alias};
use hal::clock::GenericClockController;
use hal::dmac::{DmaController, PriorityLevel};
use hal::embedded_hal_nb::serial::{Read, Write};
use hal::ehal_nb::serial::{Read, Write};
use hal::fugit::RateExtU32;
use hal::nb;

Expand Down
2 changes: 1 addition & 1 deletion boards/feather_m4/examples/uart_poll_echo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use hal::clock::GenericClockController;
use hal::delay::Delay;
use hal::ehal::delay::DelayNs;
use hal::ehal::digital::OutputPin;
use hal::embedded_hal_nb::serial::{Read, Write};
use hal::ehal_nb::serial::{Read, Write};
use hal::fugit::RateExtU32;
use hal::nb;
use hal::pac::gclk::genctrl::SRCSELECT_A;
Expand Down

0 comments on commit b9591cb

Please sign in to comment.