feat(stm32:qspi): add support for QSPI in stm32

Implemented with help of Tomasz Grześ <tomasz.grzes@gmail.com>.
This commit is contained in:
Mateusz Butkiewicz
2023-03-22 08:44:58 +01:00
parent 732614579b
commit 6a802c4708
3 changed files with 351 additions and 1 deletions

View File

@ -48,6 +48,8 @@ pub mod crc;
))]
pub mod flash;
pub mod pwm;
#[cfg(quadspi)]
pub mod qspi;
#[cfg(rng)]
pub mod rng;
#[cfg(sdmmc)]
@ -60,7 +62,6 @@ pub mod usart;
pub mod usb;
#[cfg(otg)]
pub mod usb_otg;
#[cfg(iwdg)]
pub mod wdg;