diff options
| author | Ulf Lilleengen <[email protected]> | 2024-01-03 13:08:53 +0100 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2024-01-03 13:08:53 +0100 |
| commit | c924f89ead457007c5304fcde0e2acf65b77c76d (patch) | |
| tree | f6b4fed62f42223d72a3ec954cc7df020c866344 | |
| parent | 713457ce0087efc2bcf81653feb0f1503c190e53 (diff) | |
fix: add missing impl block for async qspi multiwrite
| -rwxr-xr-x | embassy-nrf/src/qspi.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-nrf/src/qspi.rs b/embassy-nrf/src/qspi.rs index f35b83628..0171ceb0e 100755 --- a/embassy-nrf/src/qspi.rs +++ b/embassy-nrf/src/qspi.rs | |||
| @@ -639,6 +639,9 @@ mod _eh1 { | |||
| 639 | self.capacity as usize | 639 | self.capacity as usize |
| 640 | } | 640 | } |
| 641 | } | 641 | } |
| 642 | |||
| 643 | #[cfg(feature = "qspi-multiwrite-flash")] | ||
| 644 | impl<'d, T: Instance> embedded_storage_async::nor_flash::MultiwriteNorFlash for Qspi<'d, T> {} | ||
| 642 | } | 645 | } |
| 643 | 646 | ||
| 644 | pub(crate) mod sealed { | 647 | pub(crate) mod sealed { |
