aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/interrupt.rs
Commit message (Collapse)AuthorAgeFilesLines
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-65/+0
| | | | | | | | | | | | - 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-1/+1
|
* rp: remove take!, add bind_interrupts!pennae2023-05-151-7/+30
|
* added example multi priority executors rp2040Fabian Kunze2023-05-071-0/+6
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-1/+1
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-1/+1
|
* Add embassy-cortex-m crate.Dario Nieuwenhuis2022-06-121-35/+29
| | | | | | - 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`.
* Rename embassy-extras to embassy-hal-commonDario Nieuwenhuis2021-07-291-1/+1
|
* stm32: fix build, add ciDario Nieuwenhuis2021-05-171-0/+1
|
* Switch to use PrioritX enums.Dario Nieuwenhuis2021-05-111-40/+1
|
* Use `critical_section` crateDario Nieuwenhuis2021-05-111-30/+0
|
* rp: add initial versionDario Nieuwenhuis2021-03-291-0/+110