aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl55
Commit message (Collapse)AuthorAgeFilesLines
* Add missing stm32wl/stm32wb chips except stm32wleDario Nieuwenhuis2022-04-088-324/+0
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-027-32/+15
|
* stm32: add rust stable supportDario Nieuwenhuis2022-02-121-1/+1
|
* traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash.Dario Nieuwenhuis2022-01-271-1/+0
|
* stm32: add `time-driver-any` cargo feature that automatically picks one ↵Dario Nieuwenhuis2022-01-241-1/+1
| | | | available timer.
* 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
|
* Make exti an optional featureUlf Lilleengen2022-01-121-1/+1
| | | | | * Add embassy-stm32 build with exti * Add exti to examples
* 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.
* Update rust-toolchainUlf Lilleengen2021-12-161-2/+2
|
* Update rust-lorawan to version supporting defmt 0.3Ulf Lilleengen2021-12-021-2/+2
|
* examples: remove unused deps.Dario Nieuwenhuis2021-11-291-1/+0
|
* stm32: rename core features from _cmX to -cmX, cleanup gen.Dario Nieuwenhuis2021-11-231-1/+1
|
* Remove unused depsDario Nieuwenhuis2021-11-151-1/+0
|
* Adjust all examples to defmt 0.3.Bob McWhirter2021-11-151-16/+5
|
* Replace rustflags with build.rs extra-link-args.Dario Nieuwenhuis2021-11-073-20/+5
| | | | | | | | | | | | Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default.
* Use upstream version of rust-lorawanUlf Lilleengen2021-10-221-2/+2
|
* Update to newer revision of async lorawan stackUlf Lilleengen2021-10-111-2/+2
|
* Add embassy-lora crateUlf Lilleengen2021-09-302-1/+84
| | | | | | | | | | | | | | 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
|
* Update lots of depsDario Nieuwenhuis2021-09-111-7/+7
|
* Merge pull request #381 from lulf/stm32wl55-subghzDario Nieuwenhuis2021-09-062-1/+130
|\ | | | | Add HAL for SubGhz peripheral for STM32 WL series
| * Add HAL for SubGhz peripheral for STM32 WL seriesUlf Lilleengen2021-09-022-1/+130
| | | | | | | | | | | | | | | | | | 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
|
* stm32/wl: add stub APB3 to get it to build.Dario Nieuwenhuis2021-08-191-1/+1
| | | | Completely untested.
* Add STM32WL55 examples to CI (#361)Ulf Lilleengen2021-08-182-2/+22
| | | * 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-175-0/+130