aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
authorMatous Hybl <[email protected]>2022-03-27 19:29:29 +0200
committerMatous Hybl <[email protected]>2022-04-07 12:57:02 +0200
commiteb6910fa868a1af1a9d64ba1f5565eaaf437f7b9 (patch)
tree479d1b17b4c944836bb9fd1b1a9f0a35bfab10c5 /embassy-rp
parentfee0aef076718adcb2c654920712aa20786c94be (diff)
Reexport unborrow macro in HALs
Diffstat (limited to 'embassy-rp')
-rw-r--r--embassy-rp/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index cf5c10c1a..5de38af08 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -7,6 +7,9 @@ pub use rp2040_pac2 as pac;
7#[cfg(not(feature = "unstable-pac"))] 7#[cfg(not(feature = "unstable-pac"))]
8pub(crate) use rp2040_pac2 as pac; 8pub(crate) use rp2040_pac2 as pac;
9 9
10pub use embassy::util::Unborrow;
11pub use embassy_hal_common::unborrow;
12
10// This mod MUST go first, so that the others see its macros. 13// This mod MUST go first, so that the others see its macros.
11pub(crate) mod fmt; 14pub(crate) mod fmt;
12 15