Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-02 | time: add more tick rates, use 1mhz as default. | Dario Nieuwenhuis | |
2022-08-22 | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | |
2022-08-18 | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | |
2022-08-17 | Remove HAL initialization from #[embassy::main] macro. | Dario Nieuwenhuis | |
2022-08-17 | Update to critical-section 1.0, atomic-polyfill 1.0 | Dario Nieuwenhuis | |
2022-07-29 | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | |
2022-06-18 | Merge pull request #822 from embassy-rs/remove-authors | Dario Nieuwenhuis | |
Remove the authors field from Cargo.tomls | |||
2022-06-18 | Merge pull request #821 from embassy-rs/defmt-trace | Dario Nieuwenhuis | |
Add env DEFMT_LOG=trace to all examples. | |||
2022-06-18 | Remove the authors field from Cargo.tomls | Dario Nieuwenhuis | |
It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors". | |||
2022-06-18 | Update to 2021 edition. (#820) | Dario Nieuwenhuis | |
2022-06-18 | Add env DEFMT_LOG=trace to all examples. | Dario Nieuwenhuis | |
2022-06-12 | Run rustfmt. | Dario Nieuwenhuis | |
2022-05-31 | examples/stm32*, tests/stm32: specify time-tick-32768hz | Will Glynn | |
2022-04-02 | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | |
2022-02-12 | stm32: add rust stable support | Dario Nieuwenhuis | |
2022-01-24 | stm32: add `time-driver-any` cargo feature that automatically picks one ↵ | Dario Nieuwenhuis | |
available timer. | |||
2021-11-15 | Remove unused deps | Dario Nieuwenhuis | |
2021-11-15 | Adjust all examples to defmt 0.3. | Bob McWhirter | |
2021-11-07 | Replace rustflags with build.rs extra-link-args. | Dario Nieuwenhuis | |
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. | |||
2021-09-11 | Update lots of deps | Dario Nieuwenhuis | |
2021-09-03 | Remove trait_alias, allow(incomplete_features). | Dario Nieuwenhuis | |
trait_alias seems unused. no idea why it's there. | |||
2021-08-19 | stm32: move dbgmcu stuff to toplevel config setting, defaulting to true. | Dario Nieuwenhuis | |
2021-08-19 | Update cortex-m-rt to v0.7 for stm32, rp. | Dario Nieuwenhuis | |
2021-08-05 | stm32/time: add Cargo features to choose tim2/tim3 | Dario Nieuwenhuis | |
2021-08-04 | Merge pull request #344 from bobmcwhirter/remove_builders | Dario Nieuwenhuis | |
Remove builders from Config(s) and examples. | |||
2021-08-04 | Fmt giving me headaches. | Bob McWhirter | |
2021-08-04 | Um. | Bob McWhirter | |
2021-08-04 | Unused import. | Bob McWhirter | |
2021-08-04 | Remove more extra vars. | Bob McWhirter | |
2021-08-04 | Update nightly, remove removed features. | Dario Nieuwenhuis | |
2021-08-04 | Remove builders from Config(s) and examples. | Bob McWhirter | |
2021-07-29 | stm32f0: Enable debug access in low power modes | Timo Kröger | |
2021-07-15 | stm32: Add F0 example | Thales Fragoso | |