aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot/rp/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Flatten embassy-boot dir treeDario Nieuwenhuis2024-01-111-90/+0
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-3/+2
|
* rp/flash: change naming to `blocking_*`, `new_blocking`.Dario Nieuwenhuis2023-08-181-4/+4
| | | | | - Needed for consistency with other drivers. - Having two `new()` functions sometimes resulted in 'multiple applicable methods' errors.
* boot: release flash after prepare and refactor apiUlf Lilleengen2023-08-111-23/+10
| | | | | | 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.
* Refactor firmware updaterUlf Lilleengen2023-08-061-2/+4
| | | | | * Allow manipulating state without accessing DFU partition. * Provide aligned buffer when creating updater to reduce potential wrong parameters passed.
* rp: add async flashDerek Hageman2023-07-281-7/+7
| | | | | | Implement an async flash mode using the XIP background best effort read interface. Only reads are actually async, write and erase remain blocking.
* Align examplesRasmus Melchior Jacobsen2023-05-301-1/+3
|
* Align rpRasmus Melchior Jacobsen2023-05-301-53/+16
|
* Protect default implementations for FirmwareUpdater and BootLoaderRasmus Melchior Jacobsen2023-05-221-0/+1
| | | | It seems as if the arm compiler can does not care about whether the bootloader symbols are undefined if the default() function is never used. The x64 compiler does care however, so this change ensures that we can instantiate the types from tests.
* embassy-boot: add nightly feature to stm32 and rp as wellsander2023-04-201-1/+0
|
* Align platform specific bootloadersRasmus Melchior Jacobsen2023-04-051-6/+6
|
* Align examples with bootloader changesRasmus Melchior Jacobsen2023-04-041-1/+1
|
* Align chip specific boot projects with new prepare_boot() signatureRasmus Melchior Jacobsen2023-04-041-9/+7
|
* Cleanupkalkyl2023-01-031-1/+1
|
* embassy-boot (rp): Add WatchdogFlashkalkyl2023-01-031-1/+50
|
* feat: embassy-boot for rp2040Ulf Lilleengen2022-12-021-0/+90
Add embassy-boot support for RP2040, with examples for the Raspberry Pi Pico. Co-authored-by: Mathias Koch <[email protected]>