aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-08-17 21:56:14 +0200
committerDario Nieuwenhuis <[email protected]>2024-08-17 22:12:39 +0200
commiteab3a57263d52eed517ee0fb9ccb307196664ee6 (patch)
treec0d9653f01d0f167d04a4e368023cb68665cbdb2 /embassy-rp/src/lib.rs
parente30a888823ca96e4f9a2cbf82a0db6a5617228d6 (diff)
rp: use the rp-binary-info crate for binary info.
Diffstat (limited to 'embassy-rp/src/lib.rs')
-rw-r--r--embassy-rp/src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index 1fc397107..21f0771de 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -9,6 +9,9 @@
9// This mod MUST go first, so that the others see its macros. 9// This mod MUST go first, so that the others see its macros.
10pub(crate) mod fmt; 10pub(crate) mod fmt;
11 11
12#[cfg(feature = "binary-info")]
13pub use rp_binary_info as binary_info;
14
12#[cfg(feature = "critical-section-impl")] 15#[cfg(feature = "critical-section-impl")]
13mod critical_section_impl; 16mod critical_section_impl;
14 17
@@ -16,8 +19,6 @@ mod intrinsics;
16 19
17pub mod adc; 20pub mod adc;
18#[cfg(feature = "_rp235x")] 21#[cfg(feature = "_rp235x")]
19pub mod binary_info;
20#[cfg(feature = "_rp235x")]
21pub mod block; 22pub mod block;
22#[cfg(feature = "rp2040")] 23#[cfg(feature = "rp2040")]
23pub mod bootsel; 24pub mod bootsel;