Skip to content

Commit

Permalink
Add a basic blocking QSPI interface
Browse files Browse the repository at this point in the history
This module implements the QuadSPI interface which allows high speed
communication with external flash memory.

Limitations
    - Interrupts are not supported.
    - Status polling mode is not supported.
  • Loading branch information
X-yl committed May 27, 2023
1 parent dcb7f06 commit c82db16
Show file tree
Hide file tree
Showing 4 changed files with 795 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added

- Extended 64-bit monotonic timer [#640]
- Basic blocking QSPI interface [#645]

### Fixed

Expand All @@ -26,6 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#635]: https://github.com/stm32-rs/stm32f4xx-hal/pull/635
[#636]: https://github.com/stm32-rs/stm32f4xx-hal/pull/636
[#640]: https://github.com/stm32-rs/stm32f4xx-hal/pull/640
[#645]: https://github.com/stm32-rs/stm32f4xx-hal/pull/645

## [v0.16.0] - 2023-05-07

Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ pub mod prelude;
#[cfg(feature = "device-selected")]
pub mod qei;
#[cfg(feature = "device-selected")]
pub mod qspi;
#[cfg(feature = "device-selected")]
pub mod rcc;
#[cfg(feature = "device-selected")]
pub mod rtc;
Expand Down
Loading

0 comments on commit c82db16

Please sign in to comment.