aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/bootloader/nrf/src
Commit message (Collapse)AuthorAgeFilesLines
* feat: add support for nrf54 to embassy-boot examplesUlf Lilleengen2025-12-081-0/+3
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-3/+3
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-3/+3
|
* fix(boot): update examples Badr Bouslikhin2024-02-071-1/+1
|
* boot: release flash after prepare and refactor apiUlf Lilleengen2023-08-111-3/+1
| | | | | | This refactoring of the chip specific bootloader creates the internal boot instance and aligned buffer in the prepare stage, so that they are automatically dropped after. This unlocks a use case where peripherals owning the flash need to be Drop'ed before load() happens.
* Align examplesRasmus Melchior Jacobsen2023-05-301-8/+13
|
* Align examples with bootloader changesRasmus Melchior Jacobsen2023-04-041-3/+5
|
* Pass WDT config aroundhuntc2023-01-041-1/+8
| | | | By passing WDT config around we can control it more easily and promote sharing it between files.
* Remove BootFlash borrowUlf Lilleengen2022-09-201-1/+1
| | | | | | | 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.
* Remove generic const expressions from embassy-bootUlf Lilleengen2022-09-021-4/+2
| | | | | | | | | * 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
* Move bootloader main to examplesUlf Lilleengen2022-06-241-0/+48
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.