diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-03-29 13:42:29 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-29 13:42:29 +0000 |
| commit | 754bb802ba377c19be97d092c4b2afe542de20b5 (patch) | |
| tree | 037140070a2bdc68ba704c2b0143868b3cbde1d7 /embassy-stm32/src/lib.rs | |
| parent | 7a841b58d127cc6d22c8895197d3f4d4c0974ad7 (diff) | |
| parent | 87898501a2f66ee179562fa88bfc9a1b4a2ada9b (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.rs | 3 |
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 | ))] |
| 49 | pub mod flash; | 49 | pub mod flash; |
| 50 | pub mod pwm; | 50 | pub mod pwm; |
| 51 | #[cfg(quadspi)] | ||
| 52 | pub mod qspi; | ||
| 51 | #[cfg(rng)] | 53 | #[cfg(rng)] |
| 52 | pub mod rng; | 54 | pub mod rng; |
| 53 | #[cfg(sdmmc)] | 55 | #[cfg(sdmmc)] |
| @@ -60,7 +62,6 @@ pub mod usart; | |||
| 60 | pub mod usb; | 62 | pub mod usb; |
| 61 | #[cfg(otg)] | 63 | #[cfg(otg)] |
| 62 | pub mod usb_otg; | 64 | pub mod usb_otg; |
| 63 | |||
| 64 | #[cfg(iwdg)] | 65 | #[cfg(iwdg)] |
| 65 | pub mod wdg; | 66 | pub mod wdg; |
| 66 | 67 | ||
