summaryrefslogtreecommitdiff
path: root/examples/stm32f1/Cargo.toml
AgeCommit message (Collapse)Author
2022-10-07all Cargo.toml: Add license to all crate Cargo.toml fileschrysn
Closes: https://github.com/embassy-rs/embassy/issues/1002
2022-09-26usb: move classes into the `embassy-usb` crate.Dario Nieuwenhuis
2022-09-22Replace futures::future::join -> embassy_futures::join::join.Dario Nieuwenhuis
2022-09-02time: add more tick rates, use 1mhz as default.Dario Nieuwenhuis
2022-08-22split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis
2022-08-18Split embassy-time from embassy-executor.Dario Nieuwenhuis
2022-08-17Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-06-18Remove the authors field from Cargo.tomlsDario 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-18Update to 2021 edition. (#820)Dario Nieuwenhuis
2022-06-07stm32: add USB driver.Dario Nieuwenhuis
2022-05-31examples/stm32*, tests/stm32: specify time-tick-32768hzWill Glynn
2022-04-02Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis
2022-02-12stm32: add rust stable supportDario Nieuwenhuis
2022-01-27traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash.Dario Nieuwenhuis
2022-01-24stm32: add `time-driver-any` cargo feature that automatically picks one ↵Dario Nieuwenhuis
available timer.
2021-12-30examples: stm32f1: Optimize for size on development buildsSjoerd Simons
Even the basic examples seemingly need to be build optimized for size to allow flashing to a bluepill
2021-11-29examples: remove unused deps.Dario Nieuwenhuis
2021-11-15Remove unused depsDario Nieuwenhuis
2021-11-15Adjust all examples to defmt 0.3.Bob McWhirter
2021-09-28Initial STM32F1 family support with two examples for STM32F103C8 (Blue Pill)Mariusz Ryndzionek