| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | time: add `links` key, release v0.1.5. | Dario Nieuwenhuis | 2023-10-16 | 1 | -1/+1 | |
| | | ||||||
| * | time: Update examples, tests, and other code to use new Timer::after_x ↵ | Adam Greig | 2023-10-15 | 6 | -15/+15 | |
| | | | | | convenience methods | |||||
| * | Release embassy-time 0.1.4 | Dániel Buga | 2023-10-12 | 1 | -1/+1 | |
| | | ||||||
| * | stm32/adc: cleanup f1, f3, v1, and v2 | xoviat | 2023-09-27 | 1 | -1/+1 | |
| | | ||||||
| * | stm32/adc: make v1 async and leave en | xoviat | 2023-09-20 | 1 | -3/+9 | |
| | | ||||||
| * | feat: bump embassy-sync version to 0.3.0 | Ulf Lilleengen | 2023-09-14 | 1 | -1/+1 | |
| | | | | | Update changelog in preparation for release | |||||
| * | Release embassy-time v0.1.3 | Jesse Braham | 2023-08-28 | 1 | -1/+1 | |
| | | ||||||
| * | Bump executor crate version to 0.3.0 | Dániel Buga | 2023-08-23 | 1 | -1/+1 | |
| | | ||||||
| * | Added debug=2 in release profile to all examples. | Piotr Esden-Tempski | 2023-07-26 | 1 | -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. | |||||
| * | Add notes about setting chip name correctly for examples. | Adam Greig | 2023-07-22 | 1 | -1/+2 | |
| | | ||||||
| * | Release embassy-time v0.1.2 | Dario Nieuwenhuis | 2023-07-06 | 1 | -1/+1 | |
| | | ||||||
| * | Update probe-rs-cli -> probe-rs | Dario Nieuwenhuis | 2023-06-29 | 1 | -1/+1 | |
| | | ||||||
| * | stm32: update stm32-metapac. | Dario Nieuwenhuis | 2023-06-19 | 1 | -2/+2 | |
| | | ||||||
| * | examples: use nicer InterrupExt to set irq priority in multprio. | Dario Nieuwenhuis | 2023-06-09 | 1 | -9/+5 | |
| | | ||||||
| * | Remove embassy-cortex-m crate, move stuff to embassy-hal-common. | Dario Nieuwenhuis | 2023-06-09 | 1 | -1/+1 | |
| | | ||||||
| * | Use make_static! from static-cell v1.1 | Dario Nieuwenhuis | 2023-06-01 | 1 | -1/+1 | |
| | | ||||||
| * | Fix some typos | Dirk Stolle | 2023-05-08 | 1 | -2/+2 | |
| | | ||||||
| * | Bump versions preparing for -macros and -executor release | Ulf Lilleengen | 2023-04-27 | 1 | -1/+1 | |
| | | ||||||
| * | Switch from probe-run to probe-rs-cli. | Dario Nieuwenhuis | 2023-04-26 | 1 | -1/+1 | |
| | | | | | | - 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. | |||||
| * | enable inline-asm feature for cortex-m in examples | pennae | 2023-04-18 | 1 | -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. | |||||
| * | Release embassy-sync v0.2.0 | Dario Nieuwenhuis | 2023-04-13 | 1 | -1/+1 | |
| | | ||||||
| * | Fix example reference voltage | Grant Miller | 2023-04-05 | 1 | -4/+3 | |
| | | ||||||
| * | Fix example | Grant Miller | 2023-04-05 | 1 | -3/+12 | |
| | | ||||||
| * | Update STM32F0 ADC example to use `read_internal` | Matthew W. Samsonoff | 2023-04-05 | 1 | -2/+5 | |
| | | ||||||
| * | Add ADC example for STM32F0 | Matthew W. Samsonoff | 2023-04-05 | 1 | -0/+24 | |
| | | ||||||
| * | executor: add Pender, rework Cargo features. | Dario Nieuwenhuis | 2023-04-03 | 2 | -2/+2 | |
| | | | | | | | | | | 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). | |||||
| * | cortex-m/executor: don't use the owned interrupts system. | Dario Nieuwenhuis | 2023-02-28 | 2 | -12/+22 | |
| | | | | | Preparation for #1224. | |||||
| * | enabled interrupt feature | @imrank03 | 2022-12-21 | 1 | -2/+2 | |
| | | ||||||
| * | added watchdog example | @imrank03 | 2022-12-21 | 1 | -0/+25 | |
| | | ||||||
| * | added priority based example | @imrank03 | 2022-12-21 | 1 | -0/+139 | |
| | | ||||||
| * | added interrupt example | @imrank03 | 2022-12-21 | 1 | -0/+27 | |
| | | ||||||
| * | button controlled example | @imrank03 | 2022-12-21 | 1 | -0/+64 | |
| | | ||||||
| * | Merge #1074 | bors[bot] | 2022-12-02 | 3 | -2/+30 | |
| |\ | | | | | | | | | | | | | | | | | | | 1074: Added blinky example for stm32f0 r=lulf a=imrank03 Hi, I have added **blinky** example for `stm32f0` and tested with Nucleo board `STM32F091RC`. - Can I add more example for stm32f0? Co-authored-by: @imrank03 <[email protected]> | |||||
| | * | added the runner for stm32f091rc | @imrank03 | 2022-11-23 | 1 | -1/+1 | |
| | | | ||||||
| | * | added blinky example for stm32f0 | @imrank03 | 2022-11-23 | 2 | -1/+29 | |
| | | | ||||||
| * | | Bump defmt-rtt to 0.4 | Dario Nieuwenhuis | 2022-11-29 | 1 | -1/+1 | |
| |/ | ||||||
| * | all Cargo.toml: Add license to all crate Cargo.toml files | chrysn | 2022-10-07 | 1 | -0/+1 | |
| | | | | | Closes: https://github.com/embassy-rs/embassy/issues/1002 | |||||
| * | time: add more tick rates, use 1mhz as default. | Dario Nieuwenhuis | 2022-09-02 | 1 | -1/+1 | |
| | | ||||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 | |
| | | ||||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 2 | -3/+4 | |
| | | ||||||
| * | Remove HAL initialization from #[embassy::main] macro. | Dario Nieuwenhuis | 2022-08-17 | 1 | -2/+2 | |
| | | ||||||
| * | Update to critical-section 1.0, atomic-polyfill 1.0 | Dario Nieuwenhuis | 2022-08-17 | 1 | -1/+1 | |
| | | ||||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 2 | -4/+5 | |
| | | ||||||
| * | Merge pull request #822 from embassy-rs/remove-authors | Dario Nieuwenhuis | 2022-06-18 | 1 | -1/+0 | |
| |\ | | | | | Remove the authors field from Cargo.tomls | |||||
| | * | Remove the authors field from Cargo.tomls | Dario Nieuwenhuis | 2022-06-18 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | 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". | |||||
| * | | Merge pull request #821 from embassy-rs/defmt-trace | Dario Nieuwenhuis | 2022-06-18 | 1 | -0/+3 | |
| |\ \ | |/ |/| | Add env DEFMT_LOG=trace to all examples. | |||||
| | * | Add env DEFMT_LOG=trace to all examples. | Dario Nieuwenhuis | 2022-06-18 | 1 | -0/+3 | |
| | | | ||||||
| * | | Update to 2021 edition. (#820) | Dario Nieuwenhuis | 2022-06-18 | 1 | -2/+1 | |
| |/ | ||||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -3/+1 | |
| | | ||||||
| * | examples/stm32*, tests/stm32: specify time-tick-32768hz | Will Glynn | 2022-05-31 | 1 | -1/+1 | |
| | | ||||||
