aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f0
Commit message (Collapse)AuthorAgeFilesLines
...
* time: add `links` key, release v0.1.5.Dario Nieuwenhuis2023-10-161-1/+1
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-156-15/+15
| | | | convenience methods
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* stm32/adc: cleanup f1, f3, v1, and v2xoviat2023-09-271-1/+1
|
* stm32/adc: make v1 async and leave enxoviat2023-09-201-3/+9
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* Release embassy-time v0.1.3Jesse Braham2023-08-281-1/+1
|
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* 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.
* Add notes about setting chip name correctly for examples.Adam Greig2023-07-221-1/+2
|
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-1/+1
|
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-191-2/+2
|
* examples: use nicer InterrupExt to set irq priority in multprio.Dario Nieuwenhuis2023-06-091-9/+5
|
* Remove embassy-cortex-m crate, move stuff to embassy-hal-common.Dario Nieuwenhuis2023-06-091-1/+1
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-011-1/+1
|
* Fix some typosDirk Stolle2023-05-081-2/+2
|
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
|
* Switch from probe-run to probe-rs-cli.Dario Nieuwenhuis2023-04-261-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 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.
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* Fix example reference voltageGrant Miller2023-04-051-4/+3
|
* Fix exampleGrant Miller2023-04-051-3/+12
|
* Update STM32F0 ADC example to use `read_internal`Matthew W. Samsonoff2023-04-051-2/+5
|
* Add ADC example for STM32F0Matthew W. Samsonoff2023-04-051-0/+24
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-032-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 Nieuwenhuis2023-02-282-12/+22
| | | | Preparation for #1224.
* enabled interrupt feature@imrank032022-12-211-2/+2
|
* added watchdog example@imrank032022-12-211-0/+25
|
* added priority based example@imrank032022-12-211-0/+139
|
* added interrupt example@imrank032022-12-211-0/+27
|
* button controlled example@imrank032022-12-211-0/+64
|
* Merge #1074bors[bot]2022-12-023-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@imrank032022-11-231-1/+1
| |
| * added blinky example for stm32f0@imrank032022-11-232-1/+29
| |
* | Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-291-1/+1
|/
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-071-0/+1
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* time: add more tick rates, use 1mhz as default.Dario Nieuwenhuis2022-09-021-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-182-3/+4
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-2/+2
|
* Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis2022-08-171-1/+1
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-292-4/+5
|
* Merge pull request #822 from embassy-rs/remove-authorsDario Nieuwenhuis2022-06-181-1/+0
|\ | | | | Remove the authors field from Cargo.tomls
| * Remove the authors field from Cargo.tomlsDario Nieuwenhuis2022-06-181-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-traceDario Nieuwenhuis2022-06-181-0/+3
|\ \ | |/ |/| Add env DEFMT_LOG=trace to all examples.
| * Add env DEFMT_LOG=trace to all examples.Dario Nieuwenhuis2022-06-181-0/+3
| |
* | Update to 2021 edition. (#820)Dario Nieuwenhuis2022-06-181-2/+1
|/
* Run rustfmt.Dario Nieuwenhuis2022-06-121-3/+1
|
* examples/stm32*, tests/stm32: specify time-tick-32768hzWill Glynn2022-05-311-1/+1
|