aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorHenrik Alsér <[email protected]>2022-11-15 16:12:07 +0100
committerHenrik Alsér <[email protected]>2022-11-15 16:12:07 +0100
commiteb149a0bd42d7690e78e5f2b37579c1f68be613b (patch)
treef6735a981123d6f8fd478a604db481d836e84ae5 /embassy-rp/src/lib.rs
parentd05979c7085675c33615700f6590b1543ed69323 (diff)
embassy-rp: Add basic ADC module
Diffstat (limited to 'embassy-rp/src/lib.rs')
-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 f608f1768..6c91b1adc 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -6,6 +6,7 @@ pub(crate) mod fmt;
6 6
7mod intrinsics; 7mod intrinsics;
8 8
9pub mod adc;
9pub mod dma; 10pub mod dma;
10pub mod gpio; 11pub mod gpio;
11pub mod i2c; 12pub mod i2c;
@@ -98,6 +99,8 @@ embassy_hal_common::peripherals! {
98 RTC, 99 RTC,
99 100
100 FLASH, 101 FLASH,
102
103 ADC,
101} 104}
102 105
103#[link_section = ".boot2"] 106#[link_section = ".boot2"]