aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-29 13:42:29 +0000
committerGitHub <[email protected]>2023-03-29 13:42:29 +0000
commit754bb802ba377c19be97d092c4b2afe542de20b5 (patch)
tree037140070a2bdc68ba704c2b0143868b3cbde1d7 /embassy-stm32/src/lib.rs
parent7a841b58d127cc6d22c8895197d3f4d4c0974ad7 (diff)
parent87898501a2f66ee179562fa88bfc9a1b4a2ada9b (diff)
Merge #1294
1294: Add support for `QSPI` in `stm32` r=Dirbaio a=Mirror0 Implemented with help of Tomasz GrzeĊ› <[email protected]>. Tested only on stm32f777zi. Co-authored-by: Mateusz Butkiewicz <[email protected]>
Diffstat (limited to 'embassy-stm32/src/lib.rs')
-rw-r--r--embassy-stm32/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs
index eeaa04f67..8dc4df2dc 100644
--- a/embassy-stm32/src/lib.rs
+++ b/embassy-stm32/src/lib.rs
@@ -48,6 +48,8 @@ pub mod crc;
48))] 48))]
49pub mod flash; 49pub mod flash;
50pub mod pwm; 50pub mod pwm;
51#[cfg(quadspi)]
52pub mod qspi;
51#[cfg(rng)] 53#[cfg(rng)]
52pub mod rng; 54pub mod rng;
53#[cfg(sdmmc)] 55#[cfg(sdmmc)]
@@ -60,7 +62,6 @@ pub mod usart;
60pub mod usb; 62pub mod usb;
61#[cfg(otg)] 63#[cfg(otg)]
62pub mod usb_otg; 64pub mod usb_otg;
63
64#[cfg(iwdg)] 65#[cfg(iwdg)]
65pub mod wdg; 66pub mod wdg;
66 67