aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/qspi.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* fix: remove instance generic for multiwrite implementationUlf Lilleengen2025-09-291-2/+2
|
* nrf/qspi: erase instance genericsDario Nieuwenhuis2025-09-281-57/+52
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-13/+11
|
* Desugar some async fnsDániel Buga2024-12-301-3/+2
|
* nrf: Remove leftover info message and fix link to errataPriit Laes2024-11-191-1/+1
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-88/+80
|
* Emit cargo:rustc-check-cfg instructions from build.rsJan Špaček2024-05-301-1/+1
|
* nrf: remove mod sealed.Dario Nieuwenhuis2024-04-051-20/+18
|
* nrf: Use .is_empty() instead of .len() == 0Priit Laes2024-02-171-4/+4
|
* Expose rx_delay in nrf qspi configftilde2024-01-051-0/+8
|
* fix: add missing impl block for async qspi multiwriteUlf Lilleengen2024-01-031-0/+3
|
* feat: support multiwrite flash traits if configuredUlf Lilleengen2023-12-181-0/+3
|
* nrf52/qspi: avoid infinite busy-wait on QSPI read/write with zero-len ↵Peter Hansen2023-12-031-1/+21
| | | | buffer, fixes #2115
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-1/+0
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-2/+2
| | | | internal use only. (#1700)
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-6/+6
| | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
* cortex-m: remove owned interrupts.Dario Nieuwenhuis2023-06-011-3/+3
|
* Merge upstreamMehmet Ali Anil2023-03-071-118/+178
|\
| * nrf/qspi: switch to new interrupt binding.Dario Nieuwenhuis2023-03-061-30/+35
| |
| * nrf/qspi: add _raw variants of methods that don't do bounds checks.Dario Nieuwenhuis2023-03-051-20/+70
| | | | | | | | | | Useful for the nRF7002, which presents as a "fake" QSPI flash, and the "capacity" concept doesn't really apply to it.
| * nrf/qspi: remove FLASH_SIZE const generic param.Dario Nieuwenhuis2023-03-051-16/+20
| |
| * nrf/qspi: always use u32 for addresses.Dario Nieuwenhuis2023-03-051-31/+31
| |
| * nrf/qspi: add nrf53 support.Dario Nieuwenhuis2023-03-051-19/+20
| |
| * nrf/qspi: remove cfg_if hackDario Nieuwenhuis2023-03-051-30/+31
| |
* | Bump embedded-storage-async to 0.4Mehmet Ali Anil2023-03-061-15/+9
|/
* nrf/qspi: do not panic when canceling futures.Dario Nieuwenhuis2023-02-101-16/+16
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-0/+42
|
* Replace futures::future::poll_fn -> core::future::poll_fn.Dario Nieuwenhuis2022-09-221-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Remove commented out logging codeTil Blechschmidt2022-08-011-7/+1
|
* Extend QSPI config with freq, delay, spi mode, and address modeTil Blechschmidt2022-08-011-14/+34
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-1/+1
|
* Remove PeripheralRef::into_inner()Dario Nieuwenhuis2022-07-231-7/+12
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-14/+14
|
* WIP: Make unborrow safe to useGrant Miller2022-07-231-11/+3
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-44/+16
|
* Add embassy-cortex-m crate.Dario Nieuwenhuis2022-06-121-2/+2
| | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
* Add embedded-storage trait impls for QSPIUlf Lilleengen2022-04-191-30/+201
| | | | | | | | | | * Adds implementations of embedded-storage and embedded-storage-async for QSPI * Add blocking implementations of QSPI * Use blocking implementation in new() and embedded-storage impls * Use async implementation in embedded-storage-async impls * Add FLASH_SIZE const generic parameter * Own IRQ in Qspi to disable it on drop
* nrf/qspi: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-131-120/+88
|
* Lower some verbose logs to trace.Dario Nieuwenhuis2021-12-231-2/+2
|
* Remove unneeded rustfmt::skipUlf Lilleengen2021-12-161-6/+12
|
* embassy: Refactor module structure to remove kitchen-sink `util`.Dario Nieuwenhuis2021-09-111-1/+4
|
* Rename embassy-extras to embassy-hal-commonDario Nieuwenhuis2021-07-291-1/+1
|
* fmt: make all macros `macro_rules` so scoping is consistent.Dario Nieuwenhuis2021-06-071-1/+0
|
* nrf/qspi: wait MORE for DPM enter.Dario Nieuwenhuis2021-05-271-0/+5
|
* nrf/qspi: proper lowpower drop, supporting DPM.Dario Nieuwenhuis2021-05-261-53/+87
|
* Fix unused field warningsRukai2021-05-171-6/+2
|
* Fix warningsRukai2021-05-171-2/+1
|
* nrf: add `Unborrow<Target = Self>` bound to all instance traitsDario Nieuwenhuis2021-05-171-1/+1
|