summaryrefslogtreecommitdiff
path: root/examples/boot/bootloader
AgeCommit message (Collapse)Author
2022-09-20Remove BootFlash borrowUlf Lilleengen
Compiler will infer a different lifetime for BootFlash than for the borrowed flash, which makes it require more type annotations than if it was just owning the type. Since it doesn't really matter if it owns or borrows in practical use, change it to own so that it simplifies usage.
2022-09-02Remove generic const expressions from embassy-bootUlf Lilleengen
* 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
2022-08-17Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-06-29Fix RAM origin copy paste from nrfUlf Lilleengen
2022-06-27Add build.rs to detect armv6Ulf Lilleengen
2022-06-24Move bootloader main to examplesUlf Lilleengen
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.