aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32l4/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* stm32/gpio: remove generics.Dario Nieuwenhuis2024-01-221-3/+2
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-212-2/+0
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-3/+3
| | | | convenience methods
* Refactor firmware updaterUlf Lilleengen2023-08-061-4/+4
| | | | | * Allow manipulating state without accessing DFU partition. * Provide aligned buffer when creating updater to reduce potential wrong parameters passed.
* Add firmware updater examples to CIUlf Lilleengen2023-06-191-3/+7
| | | | | | | | 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.
* Align examplesRasmus Melchior Jacobsen2023-05-301-4/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Align with new bind_interruptRasmus Melchior Jacobsen2023-05-251-1/+1
|
* 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
* 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-time from embassy-executor.Dario Nieuwenhuis2022-08-182-3/+3
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-172-4/+5
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-292-5/+5
|
* Move bootloader main to examplesUlf Lilleengen2022-06-242-0/+64
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.