aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/ppi/dppi.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat: improve nrf54 support using new nrf-pacUlf Lilleengen2025-10-281-5/+6
| | | | | | | | | | | | | * Update nrf-pac to version that modifies nrf52 register layout to match nrf54 to reduce the amount of cfg needed for nrf54 support. * Make the following peripherals available on nrf54: twim, twis, spim, spis, uart, buffered uarte, dppi, gpiote, pwm, saadc * Add examples tested on the nrf54 dk Some code is based on or copied from other pull requests, modified to match the new nrf-pac layout. Co-authored-by: Dmitry Tarnyagin <[email protected]>
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* nrf: add persist() method for gpio and ppiMatthew Tran2025-09-201-0/+9
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-12/+4
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-4/+4
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | internal use only. (#1700)
* Build failuresCameron2023-06-301-1/+1
|
* Build failuresCameron2023-06-301-2/+2
|
* Build failuresCameron2023-06-301-1/+1
|
* Lifetimes in dppiCameron2023-06-291-2/+2
|
* nrf: add PPI channel group driver.Dario Nieuwenhuis2023-03-041-1/+1
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-0/+3
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-6/+6
|
* fix nrf dppiDario Nieuwenhuis2022-07-231-8/+1
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-15/+4
|
* Add embassy-cortex-m crate.Dario Nieuwenhuis2022-06-121-1/+1
| | | | | | - 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`.
* nrf: add initial nrf5340 supportDario Nieuwenhuis2021-10-281-0/+22
|
* ppi: simplify driver creation.Dario Nieuwenhuis2021-10-261-41/+54
| | | | | | Moving `new_*` to the version-specific mod allows doing the correct register writes right there in `new`, without needing abstractions like `enable_all`/`disable_all`.
* - Interconnect is now PPI againDion Dokter2021-10-261-0/+61
- Scary pointer math is now contained in the tasks and events - ppi now sets the tasks and events immediately and the struct is now zero-sized - StaticToOne is renamed to ZeroToOne - Used DPPI tasks and events now panic when enabled twice