aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl/src/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Align flash examplesRasmus Melchior Jacobsen2023-04-051-1/+1
|
* Add random examplemiathedev2022-12-041-0/+33
|
* Add uart async examplemiathedev2022-11-011-0/+60
|
* Remove flash lock/unlock public API from stm32 flash, and perform the ↵Mathias2022-09-301-1/+1
| | | | unlocking and locking automatically on erase and write operations
* Remove default, reorder generic paramsivmarkov2022-09-251-1/+2
|
* Update Rust nightly.Dario Nieuwenhuis2022-09-222-2/+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-262-2/+2
| | | | For the Seeed Studio Lora-E5 those pins conflict with the radio frontend control GPIOS (PA4 and PA5).
* sync: flatten module structure.Dario Nieuwenhuis2022-08-221-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-185-6/+6
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-172-12/+6
| | | | | 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-175-12/+16
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-295-12/+12
|
* Document configuration options and handle optional downlinkUlf Lilleengen2022-07-041-3/+21
|
* Run rustfmt.Dario Nieuwenhuis2022-06-126-40/+19
|
* 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`.
* Add bootloader to CIUlf Lilleengen2022-04-271-1/+1
|
* Add stm32 flash + bootloader supportUlf Lilleengen2022-04-271-0/+43
| | | | | | | | * Add flash drivers for L0, L1, L4, WB and WL. Not tested for WB, but should be similar to WL. * Add embassy-boot-stm32 for bootloading on STM32. * Add flash examples and bootloader examples * Update stm32-data
* 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-085-0/+289