aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl55/src
Commit message (Collapse)AuthorAgeFilesLines
* Add missing stm32wl/stm32wb chips except stm32wleDario Nieuwenhuis2022-04-085-289/+0
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-026-31/+14
|
* stm32/exti: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-192-2/+0
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-193-15/+12
|
* stm32/rcc: remove Rcc struct, RccExt trait.Dario Nieuwenhuis2022-01-052-15/+3
| | | | All the RCC configuration is executed in init().
* stm32/rcc: remove builders on Config.Dario Nieuwenhuis2022-01-042-2/+2
| | | | | This makes API consistent with other Config structs in Embassy, where the convention is to not use builders.
* Add embassy-lora crateUlf Lilleengen2021-09-301-0/+79
| | | | | | | | | | | | | | This crate contains async radio drivers for various lora drivers that work with embassy timers. The code is imported from Drogue Device ( https://github.com/drogue-iot/drogue-device) The radio drivers integrate with the async LoRaWAN MAC layer in the lorawan-device crate. Also added is an example for the STM32WL55 and for STM32L0 (requires the LoRa Discovery board) for LoRaWAN. Future work is to make the underlying radio drivers using fully async SPI when communicating with the peripheral.
* embassy: Refactor module structure to remove kitchen-sink `util`.Dario Nieuwenhuis2021-09-111-12/+20
|
* Merge pull request #381 from lulf/stm32wl55-subghzDario Nieuwenhuis2021-09-061-0/+129
|\ | | | | Add HAL for SubGhz peripheral for STM32 WL series
| * 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.
* | Remove trait_alias, allow(incomplete_features).Dario Nieuwenhuis2021-09-033-6/+0
|/ | | | trait_alias seems unused. no idea why it's there.
* stm32: move dbgmcu stuff to toplevel config setting, defaulting to true.Dario Nieuwenhuis2021-08-193-12/+1
|
* Add STM32WL55 examples to CI (#361)Ulf Lilleengen2021-08-181-2/+1
| | | * Add STM32WL55 examples to CI and fix warnings
* Add per-core EXTI supportUlf Lilleengen2021-08-171-0/+34
| | | | | | * Generate a core index put into the PAC for the peripherals to use as index into registers. * Add EXTI v2 which uses CORE_INDEX to index exti registers
* Add example for STM32WL55Ulf Lilleengen2021-08-173-0/+91