aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/ppi/ppi.rs
Commit message (Collapse)AuthorAgeFilesLines
* 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-16/+16
|
* cleanupUlf Lilleengen2024-01-241-2/+2
|
* feat: add basic support for nRF51 chips to embassy-nrfUlf Lilleengen2024-01-241-0/+1
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | internal use only. (#1700)
* Update embassy-nrf/src/ppi/ppi.rsCameron Harris2023-07-051-1/+1
| | | Co-authored-by: Dario Nieuwenhuis <[email protected]>
* Update embassy-nrf/src/ppi/ppi.rsCameron Harris2023-07-051-1/+1
| | | Co-authored-by: Dario Nieuwenhuis <[email protected]>
* Fixed Lifetimes in Events & TasksCameron2023-07-051-2/+2
|
* feature(1354): Added lifetimes to Event +Cameron2023-06-291-2/+2
|
* nrf: add PPI channel group driver.Dario Nieuwenhuis2023-03-041-1/+1
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-1/+1
|
* nRF documentation warning fixesUlf Lilleengen2022-08-221-0/+3
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-8/+8
|
* WIP: Make unborrow safe to useGrant Miller2022-07-231-14/+3
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-14/+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-4/+24
|
* ppi: simplify driver creation.Dario Nieuwenhuis2021-10-261-61/+67
| | | | | | 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`.
* Fewer channel traits, more cfg to make the system workDion Dokter2021-10-261-4/+8
|
* - Interconnect is now PPI againDion Dokter2021-10-261-0/+77
- 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