aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot/rp
Commit message (Collapse)AuthorAgeFilesLines
* Flatten embassy-boot dir treeDario Nieuwenhuis2024-01-115-447/+0
|
* Centralize license and MSRV boilerplate into the repo readme.Dario Nieuwenhuis2024-01-111-14/+0
|
* fix: remove git dependency in embassy-bootUlf Lilleengen2023-12-201-0/+6
|
* update release version in examples and other cratesScott Mabin2023-12-041-1/+1
|
* update embedded-storage{,-async}, remove patch.Dario Nieuwenhuis2023-12-041-2/+2
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-292-10/+3
|
* Prepare embassy-net 0.2.1 and embassy-sync 0.4.0Dániel Buga2023-10-311-1/+1
|
* Sync all fmt.rs files.Dario Nieuwenhuis2023-08-301-6/+39
|
* 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: update readme MSRV to stablesander2023-04-201-1/+1
|
* embassy-boot: add nightly feature to stm32 and rp as wellsander2023-04-202-4/+9
|
* 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
|
* Bump embedded-storage-async to 0.4Mehmet Ali Anil2023-03-061-1/+1
|
* Cleanupkalkyl2023-01-031-1/+1
|
* embassy-boot (rp): Add WatchdogFlashkalkyl2023-01-032-1/+52
|
* feat: embassy-boot for rp2040Ulf Lilleengen2022-12-025-0/+420
Add embassy-boot support for RP2040, with examples for the Raspberry Pi Pico. Co-authored-by: Mathias Koch <[email protected]>