aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/nrf/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* chore: use feature guards for nrf54 in examplesUlf Lilleengen2025-12-082-7/+21
|
* feat: add support for nrf54 to embassy-boot examplesUlf Lilleengen2025-12-082-3/+12
|
* Fix defmt support for example boot appUlf Lilleengen2024-09-191-1/+3
|
* Add led to example to demonstrate revert state detectionUlf Lilleengen2024-09-191-0/+9
|
* fix(boot): update examples Badr Bouslikhin2024-02-071-1/+1
|
* 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-2/+5
| | | | | | | | 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-5/+7
|
* feat: compile bootloader examples for nRF91Ulf Lilleengen2023-01-042-1/+10
| | | | | | | * Add nRF91 as target in CI builds * Add example linker scripts for nrf91 * Make less nRF52 assumptions example config * Add llvm-tools-preview required for cargo objcopy example
* Provides a means of obtaining the current WDT confighuntc2023-01-041-0/+18
| | | | Obtaining the current WDT config is important so that we do not have to duplication configuration around the place. A constructor method has been introduced that returns WDT config in accordance with how the register is presently configured. The bootloader example has also been updated to show the watchdog can be obtained and used.
* Update Rust nightly.Dario Nieuwenhuis2022-09-222-2/+0
| | | | Removes feature(generic_associated_types)
* Remove generic const expressions from embassy-bootUlf Lilleengen2022-09-021-1/+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
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-182-3/+3
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-172-4/+6
|
* 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.