diff options
| author | Vincent Stakenburg <[email protected]> | 2022-06-28 12:51:08 +0200 |
|---|---|---|
| committer | Vincent Stakenburg <[email protected]> | 2022-06-28 12:51:08 +0200 |
| commit | f2ad9c2d9d892d4656f05e04c54cb24922d71d97 (patch) | |
| tree | 7f4280c0e9bf0b154ef24f760895aebb85ecd99f | |
| parent | 74bbf5aa02a10efce498054ad436a6140540f917 (diff) | |
rebase and fix unborrow
| -rw-r--r-- | embassy-stm32/src/wdg/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/embassy-stm32/src/wdg/mod.rs b/embassy-stm32/src/wdg/mod.rs index 8d2663d94..ce3af1484 100644 --- a/embassy-stm32/src/wdg/mod.rs +++ b/embassy-stm32/src/wdg/mod.rs | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | use core::marker::PhantomData; | 1 | use core::marker::PhantomData; |
| 2 | 2 | ||
| 3 | use embassy::util::Unborrow; | 3 | use embassy_hal_common::{unborrow, Unborrow}; |
| 4 | use embassy_hal_common::unborrow; | ||
| 5 | use stm32_metapac::iwdg::vals::Key; | 4 | use stm32_metapac::iwdg::vals::Key; |
| 6 | pub use stm32_metapac::iwdg::vals::Pr as Prescaler; | 5 | pub use stm32_metapac::iwdg::vals::Pr as Prescaler; |
| 7 | 6 | ||
