| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add missing stm32wl/stm32wb chips except stm32wle | Dario Nieuwenhuis | 2022-04-08 | 8 | -324/+0 |
| | | |||||
| * | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | 2022-04-02 | 7 | -32/+15 |
| | | |||||
| * | stm32: add rust stable support | Dario Nieuwenhuis | 2022-02-12 | 1 | -1/+1 |
| | | |||||
| * | traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash. | Dario Nieuwenhuis | 2022-01-27 | 1 | -1/+0 |
| | | |||||
| * | stm32: add `time-driver-any` cargo feature that automatically picks one ↵ | Dario Nieuwenhuis | 2022-01-24 | 1 | -1/+1 |
| | | | | | available timer. | ||||
| * | stm32/exti: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 2 | -2/+0 |
| | | |||||
| * | stm32/gpio: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 3 | -15/+12 |
| | | |||||
| * | Make exti an optional feature | Ulf Lilleengen | 2022-01-12 | 1 | -1/+1 |
| | | | | | | * Add embassy-stm32 build with exti * Add exti to examples | ||||
| * | stm32/rcc: remove Rcc struct, RccExt trait. | Dario Nieuwenhuis | 2022-01-05 | 2 | -15/+3 |
| | | | | | All the RCC configuration is executed in init(). | ||||
| * | stm32/rcc: remove builders on Config. | Dario Nieuwenhuis | 2022-01-04 | 2 | -2/+2 |
| | | | | | | This makes API consistent with other Config structs in Embassy, where the convention is to not use builders. | ||||
| * | Update rust-toolchain | Ulf Lilleengen | 2021-12-16 | 1 | -2/+2 |
| | | |||||
| * | Update rust-lorawan to version supporting defmt 0.3 | Ulf Lilleengen | 2021-12-02 | 1 | -2/+2 |
| | | |||||
| * | examples: remove unused deps. | Dario Nieuwenhuis | 2021-11-29 | 1 | -1/+0 |
| | | |||||
| * | stm32: rename core features from _cmX to -cmX, cleanup gen. | Dario Nieuwenhuis | 2021-11-23 | 1 | -1/+1 |
| | | |||||
| * | Remove unused deps | Dario Nieuwenhuis | 2021-11-15 | 1 | -1/+0 |
| | | |||||
| * | Adjust all examples to defmt 0.3. | Bob McWhirter | 2021-11-15 | 1 | -16/+5 |
| | | |||||
| * | Replace rustflags with build.rs extra-link-args. | Dario Nieuwenhuis | 2021-11-07 | 3 | -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-lorawan | Ulf Lilleengen | 2021-10-22 | 1 | -2/+2 |
| | | |||||
| * | Update to newer revision of async lorawan stack | Ulf Lilleengen | 2021-10-11 | 1 | -2/+2 |
| | | |||||
| * | Add embassy-lora crate | Ulf Lilleengen | 2021-09-30 | 2 | -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 Nieuwenhuis | 2021-09-11 | 1 | -12/+20 |
| | | |||||
| * | Update lots of deps | Dario Nieuwenhuis | 2021-09-11 | 1 | -7/+7 |
| | | |||||
| * | Merge pull request #381 from lulf/stm32wl55-subghz | Dario Nieuwenhuis | 2021-09-06 | 2 | -1/+130 |
| |\ | | | | | Add HAL for SubGhz peripheral for STM32 WL series | ||||
| | * | Add HAL for SubGhz peripheral for STM32 WL series | Ulf Lilleengen | 2021-09-02 | 2 | -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 Nieuwenhuis | 2021-09-03 | 3 | -6/+0 |
| |/ | | | | trait_alias seems unused. no idea why it's there. | ||||
| * | stm32: move dbgmcu stuff to toplevel config setting, defaulting to true. | Dario Nieuwenhuis | 2021-08-19 | 3 | -12/+1 |
| | | |||||
| * | stm32/wl: add stub APB3 to get it to build. | Dario Nieuwenhuis | 2021-08-19 | 1 | -1/+1 |
| | | | | | Completely untested. | ||||
| * | Add STM32WL55 examples to CI (#361) | Ulf Lilleengen | 2021-08-18 | 2 | -2/+22 |
| | | | | * Add STM32WL55 examples to CI and fix warnings | ||||
| * | Add per-core EXTI support | Ulf Lilleengen | 2021-08-17 | 1 | -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 STM32WL55 | Ulf Lilleengen | 2021-08-17 | 5 | -0/+130 |
