aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl55/src/bin/subghz.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add missing stm32wl/stm32wb chips except stm32wleDario Nieuwenhuis2022-04-081-130/+0
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-021-3/+3
|
* stm32/exti: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-1/+0
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-6/+5
|
* stm32/rcc: remove Rcc struct, RccExt trait.Dario Nieuwenhuis2022-01-051-5/+0
| | | | All the RCC configuration is executed in init().
* stm32/rcc: remove builders on Config.Dario Nieuwenhuis2022-01-041-1/+1
| | | | | This makes API consistent with other Config structs in Embassy, where the convention is to not use builders.
* embassy: Refactor module structure to remove kitchen-sink `util`.Dario Nieuwenhuis2021-09-111-12/+20
|
* Add HAL for SubGhz peripheral for STM32 WL seriesUlf Lilleengen2021-09-021-0/+129
Based on the HAL from stm32wl, the peripheral driver has been modified to fit into embassy, using the embassy APIs, providing operation of the radio peripheral. The initial version does not offer any async APIs, but the example shows how the radio IRQ can be used to perform async TX of the radio.