aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/bootloader/nrf
Commit message (Collapse)AuthorAgeFilesLines
* Align examplesRasmus Melchior Jacobsen2023-05-302-8/+14
|
* ci: fix nrf, rp tests.Dario Nieuwenhuis2023-05-291-2/+2
|
* Switch from probe-run to probe-rs-cli.Dario Nieuwenhuis2023-04-261-1/+1
| | | | | - probe-run screwed up the last release 2 weeks ago and it's still not fixed (issue 391). Doesn't look well maintained. - Even when it's not broken, it lags behind probe-rs-cli in new chips support because it's slow in updating probe-rs.
* enable inline-asm feature for cortex-m in examplespennae2023-04-181-1/+1
| | | | | | inline assembly is supported since rust 1.59, we're way past that. enabling this makes the compiled code more compact, and on rp2040 even decreses memory usage by not needing thunks in sram.
* Align examples with bootloader changesRasmus Melchior Jacobsen2023-04-041-3/+5
|
* Cleaned up some doc and memory layouthuntc2023-01-042-2/+2
| | | | The memory layout of the s140 crept into a number of memory files, which can cause confusion.
* 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.
* Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-291-1/+1
|
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-071-0/+1
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* 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
* Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis2022-08-171-1/+1
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-1/+0
|
* Move bootloader main to examplesUlf Lilleengen2022-06-248-0/+241
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.