aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/qdec.rs
Commit message (Collapse)AuthorAgeFilesLines
* nrf/qdec: erase instance genericsDario Nieuwenhuis2025-09-281-16/+23
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-19/+17
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-38/+45
|
* nrf: remove mod sealed.Dario Nieuwenhuis2024-04-051-22/+19
|
* nrf: Remove useless returnsPriit Laes2024-02-171-1/+1
|
* nrf: Drop needless letPriit Laes2024-02-171-3/+2
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | 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-4/+3
|
* ci: fix nrf, rp tests.Dario Nieuwenhuis2023-05-291-2/+11
|
* nrf/qdec: make available on all chips, use Instance trait, switch to new ↵Dario Nieuwenhuis2023-03-061-33/+79
| | | | interrupt binding.
* nrf: docs.Dario Nieuwenhuis2023-02-011-2/+35
|
* 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
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-1/+1
|
* nrf: replace PhantomData usages with PeripheralRef.Dario Nieuwenhuis2022-07-231-5/+4
|
* Remove PeripheralRef::into_inner()Dario Nieuwenhuis2022-07-231-4/+4
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-19/+19
|
* WIP: Make unborrow safe to useGrant Miller2022-07-231-8/+8
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-19/+9
|
* 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`.
* Remove OnDrop handler, start sampling in newHenrik Alsér2022-05-121-10/+4
|
* Add qdec moduleHenrik Alsér2022-05-071-0/+222