aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl/src/bin/lorawan.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add lora-phy examples.ceekdee2023-04-231-104/+0
|
* Update to rust-lorawan with afit supportUlf Lilleengen2023-04-151-1/+1
|
* Update Rust nightly.Dario Nieuwenhuis2022-09-221-1/+0
| | | | Removes feature(generic_associated_types)
* Use LP as defaultUlf Lilleengen2022-08-261-2/+2
|
* lora: Make some options configurableTimo Kröger2022-08-261-1/+3
| | | | | | Call `config()` only once at construction not with every RX and TX operation. The Lora-E5 only supports HP mode, use that instead. The nucleo board supports both HP and LP and should continue to work.
* lora: Use a trait for RF frontend switchingTimo Kröger2022-08-261-1/+27
| | | | | | The Seeed Studio Lora-E5 module only has two control pins. With the `RadioSwitch` trait the user can implement any method required by the module/board to control the TX/RX direction of the radio frontend.
* lora: Improve IRQ handlingTimo Kröger2022-08-261-3/+2
| | | | | | | * Interrupt handler only triggers a waker: Do the actual interrupt processing which involves SUBGHZ SPI coms in the task. * Do not require a static state for the constructor. * Remove unsafe from construcor.
* stm32wl: Do not require external SPI pins for SUBGHZTimo Kröger2022-08-261-1/+1
| | | | For the Seeed Studio Lora-E5 those pins conflict with the radio frontend control GPIOS (PA4 and PA5).
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-1/+1
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-171-6/+3
| | | | | It was only useful for doing #[embassy_executor::main(config = "config()")]`. Now that it's gone, it makes more sense to build the config in main directly.
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-3/+5
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-2/+2
|
* Document configuration options and handle optional downlinkUlf Lilleengen2022-07-041-3/+21
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-14/+9
|
* Update to released lorawan cratesUlf Lilleengen2022-04-261-1/+1
|
* Update to latest rust-lorawan versionUlf Lilleengen2022-04-081-8/+2
|
* Add missing stm32wl/stm32wb chips except stm32wleDario Nieuwenhuis2022-04-081-0/+72