aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32f7
Commit message (Collapse)AuthorAgeFilesLines
...
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-4/+4
| | | | convenience methods
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* Merge pull request #1854 from bugadani/strDario Nieuwenhuis2023-09-031-1/+2
|\ | | | | embassy-{net, sync, time}: Use fmt::unwrap
| * Fix bootloader application examplesDániel Buga2023-09-021-1/+2
| |
* | 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
|
* Refactor firmware updaterUlf Lilleengen2023-08-061-3/+3
| | | | | * Allow manipulating state without accessing DFU partition. * Provide aligned buffer when creating updater to reduce potential wrong parameters passed.
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-2/+2
|
* Add firmware updater examples to CIUlf Lilleengen2023-06-192-3/+12
| | | | | | | | CI was not building the a.rs application due to the requirement of b.bin having been built first. Add a feature flag to examples so that CI can build them including a dummy application. Update a.rs application examples so that they compile again.
* FormattingRasmus Melchior Jacobsen2023-05-301-3/+1
|
* Align examplesRasmus Melchior Jacobsen2023-05-301-6/+8
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Align with new bind_interruptRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
|
* fix stm32f7 example runner command for probe-rs-cliMalte Brieske2023-04-261-1/+1
|
* 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.
* embassy-boot: update ci and examples to use the nightly flagsander2023-04-201-1/+1
|
* 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
|
* 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).
* 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
* 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
* Use firmware writer in stm32{f7, h7} example appUlf Lilleengen2022-09-261-8/+9
| | | | | The new FirmwareWriter is useful in particular for these architectures due to the large erase sector size.
* 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
| |
* | Remove generic const expressions from embassy-bootUlf Lilleengen2022-09-021-3/+4
|/ | | | | | | | | * Remove the need for generic const expressions and use buffers provided in the flash config. * Extend embedded-storage traits to simplify generics. * Document all public APIs * Add toplevel README * Expose AlignedBuffer type for convenience. * Update examples
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-183-4/+5
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-172-4/+5
|
* 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-293-6/+7
|
* Fix RAM origin copy paste from nrfUlf Lilleengen2022-06-291-1/+1
|
* Move bootloader main to examplesUlf Lilleengen2022-06-249-0/+207
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.