aboutsummaryrefslogtreecommitdiff
path: root/embassy-lora/src/iv.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move embassy-lora, lora examples to lora-phy repo.Dario Nieuwenhuis2023-11-291-317/+0
|
* stm32: use PAC enums for VOS.Dario Nieuwenhuis2023-09-181-9/+5
|
* Wait for high for DIO1 for rp2040-based LoRa boards.ceekdee2023-09-121-5/+1
|
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-191-11/+5
|
* 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-3/+3
|
* stm32: move lora to bind_interruptsxoviat2023-05-241-15/+21
|
* Add external LoRa physical layer functionality.ceekdee2023-04-211-0/+325