summaryrefslogtreecommitdiff
path: root/examples/stm32wl/src/bin/lorawan.rs
AgeCommit message (Collapse)Author
2022-09-22Update Rust nightly.Dario Nieuwenhuis
Removes feature(generic_associated_types)
2022-08-26Use LP as defaultUlf Lilleengen
2022-08-26lora: Make some options configurableTimo Kröger
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.
2022-08-26lora: Use a trait for RF frontend switchingTimo Kröger
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.
2022-08-26lora: Improve IRQ handlingTimo Kröger
* 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.
2022-08-26stm32wl: Do not require external SPI pins for SUBGHZTimo Kröger
For the Seeed Studio Lora-E5 those pins conflict with the radio frontend control GPIOS (PA4 and PA5).
2022-08-18Split embassy-time from embassy-executor.Dario Nieuwenhuis
2022-08-17examples Remove the `fn config()` idiom.Dario Nieuwenhuis
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.
2022-08-17Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-07-04Document configuration options and handle optional downlinkUlf Lilleengen
2022-06-12Run rustfmt.Dario Nieuwenhuis
2022-04-26Update to released lorawan cratesUlf Lilleengen
2022-04-08Update to latest rust-lorawan versionUlf Lilleengen
2022-04-08Add missing stm32wl/stm32wb chips except stm32wleDario Nieuwenhuis