aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/timer.rs
Commit message (Collapse)AuthorAgeFilesLines
* time: split driver into a separate embassy-time-driver crate.Dario Nieuwenhuis2024-01-111-175/+0
|
* docs: document all embassy-rp public apisUlf Lilleengen2023-12-191-0/+1
| | | | Enable missing doc warnings.
* rp: update rp-pac.Dario Nieuwenhuis2023-06-161-16/+14
|
* Add `rt` feature to HALs, cfg out interrupt handling when not set.Dario Nieuwenhuis2023-06-081-0/+4
|
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-5/+5
| | | | | | | | | | | | - 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-5/+5
|
* Address review feedbackivmarkov2022-10-241-8/+12
|
* Change time Driver contract to never fire the alarm synchronouslyivmarkov2022-10-241-8/+9
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-2/+2
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-2/+2
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-4/+4
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-11/+10
|
* 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`.
* blocking_mutex: refactor to work on stable. No GATs, and can be constructed ↵Dario Nieuwenhuis2022-02-121-3/+4
| | | | in const.
* embassy: Refactor module structure to remove kitchen-sink `util`.Dario Nieuwenhuis2021-09-111-1/+1
|
* time: allow storing state inside the driver struct.Dario Nieuwenhuis2021-08-251-60/+64
|
* time: replace dyn clock/alarm with a global Driver traitDario Nieuwenhuis2021-08-051-48/+24
|
* rp/timer: addDario Nieuwenhuis2021-07-121-0/+187