aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32f7/src
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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/+66
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.