aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl
Commit message (Collapse)AuthorAgeFilesLines
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* Update embedded-hal to 1.0.0-rc.1 (#1783)Dario Nieuwenhuis2023-08-161-0/+3
|
* stm32/rtc: remove generics and segregate clock selxoviat2023-08-081-4/+1
|
* stm32: fix rtc and examplesxoviat2023-08-061-1/+1
|
* stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-312-6/+11
|
* Merge branch 'main' into mainChuck Davis2023-07-271-0/+3
|\
| * Added debug=2 in release profile to all examples.Piotr Esden-Tempski2023-07-261-0/+3
| | | | | | | | | | | | | | This makes rtt output work right when using `cargo run` in release mode. Debug was already enabled for release builds in some of the examples but not all.
* | Use lora-phy v1.2.1; modify embassy-lora dependencies.ceekdee2023-07-261-3/+0
|/
* Add notes about setting chip name correctly for examples.Adam Greig2023-07-221-1/+2
|
* Enable RTC on STM32WL chips (#1645)Phil Markgraf2023-07-153-3/+47
| | | | | | | | | | | | | * Add clippy allow to not report if same then branch * Support enabling RTC clock on STM32WL * Add clippy allow to not report if same then branch * Support enabling RTC clock on STM32WL * Add rtc example for stm32wl * Address code review feedback
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* update embedded-hal crates.Dario Nieuwenhuis2023-07-041-0/+3
|
* Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-2/+2
|
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-192-6/+4
|
* Remove embassy-cortex-m crate, move stuff to embassy-hal-common.Dario Nieuwenhuis2023-06-091-1/+1
|
* Fix examplesRasmus Melchior Jacobsen2023-05-251-5/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Align with new bind_interruptRasmus Melchior Jacobsen2023-05-251-2/+2
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-6/+6
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-3/+2
|
* stm32: move lora to bind_interruptsxoviat2023-05-244-21/+30
|
* Update Rust nightly.Dario Nieuwenhuis2023-05-193-3/+0
|
* Fix some typosDirk Stolle2023-05-081-1/+1
|
* Simplify SUBGHZSPI configuration.ceekdee2023-05-043-12/+3
|
* Handle SUBGHZSPI as async.ceekdee2023-05-033-35/+11
|
* Merge branch 'embassy-rs:master' into masterChuck Davis2023-04-281-1/+1
|\
| * Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
| |
* | Remove external-lora-phy feature.ceekdee2023-04-281-1/+1
|/
* Merge branch 'embassy-rs:master' into masterChuck Davis2023-04-261-2/+2
|\
| * Switch from probe-run to probe-rs-cli.Dario Nieuwenhuis2023-04-261-2/+2
| | | | | | | | | | - probe-run screwed up the last release 2 weeks ago and it's still not fixed (issue 391). Doesn't look well maintained. - Even when it's not broken, it lags behind probe-rs-cli in new chips support because it's slow in updating probe-rs.
* | Deprecate original LoRa drivers. Update rust-lorawan releases.ceekdee2023-04-252-121/+2
| |
* | Add lora-phy examples.ceekdee2023-04-234-107/+139
| |
* | Use released lora-phy.ceekdee2023-04-211-1/+1
| |
* | Add external LoRa physical layer functionality.ceekdee2023-04-213-6/+198
|/
* enable inline-asm feature for cortex-m in examplespennae2023-04-181-1/+1
| | | | | | inline assembly is supported since rust 1.59, we're way past that. enabling this makes the compiled code more compact, and on rp2040 even decreses memory usage by not needing thunks in sram.
* update to released versionsUlf Lilleengen2023-04-171-2/+2
|
* Update to rust-lorawan with afit supportUlf Lilleengen2023-04-152-3/+3
|
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* stm32: remove subghz feature.Dario Nieuwenhuis2023-04-071-1/+1
| | | | It's available only on WL. if you're using a WL, you want subghz for sure.
* Align flash examplesRasmus Melchior Jacobsen2023-04-051-1/+1
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-031-1/+1
| | | | | | | | | This introduces a `Pender` struct with enum cases for thread-mode, interrupt-mode and custom callback executors. This avoids calls through function pointers when using only the thread or interrupt executors. Faster, and friendlier to `cargo-call-stack`. `embassy-executor` now has `arch-xxx` Cargo features to select the arch and to enable the builtin executors (thread and interrupt).
* Add random examplemiathedev2022-12-041-0/+33
|
* Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-291-1/+1
|
* Add uart async examplemiathedev2022-11-011-0/+60
|
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-071-0/+1
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* 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)
* Merge #939bors[bot]2022-09-041-1/+1
|\ | | | | | | | | | | | | | | 939: time: add more tick rates, use 1mhz as default. r=Dirbaio a=Dirbaio Co-authored-by: Dario Nieuwenhuis <[email protected]>
| * time: add more tick rates, use 1mhz as default.Dario Nieuwenhuis2022-09-021-1/+1
| |