diff options
| author | Ulf Lilleengen <[email protected]> | 2022-12-01 18:26:22 +0100 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2022-12-02 11:28:33 +0100 |
| commit | bb89a2341cca1aad79bc6d5f3532008541c9e428 (patch) | |
| tree | 63ff838ef0192f492ac2aae59b0b8a445b8200d6 /examples/boot/bootloader/rp/README.md | |
| parent | eb010fbe33c2b99bdeaa68a2045b8a8e220cf0aa (diff) | |
feat: embassy-boot for rp2040
Add embassy-boot support for RP2040, with examples for the Raspberry Pi
Pico.
Co-authored-by: Mathias Koch <[email protected]>
Diffstat (limited to 'examples/boot/bootloader/rp/README.md')
| -rw-r--r-- | examples/boot/bootloader/rp/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/boot/bootloader/rp/README.md b/examples/boot/bootloader/rp/README.md new file mode 100644 index 000000000..064e87273 --- /dev/null +++ b/examples/boot/bootloader/rp/README.md | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # Bootloader for RP2040 | ||
| 2 | |||
| 3 | The bootloader uses `embassy-boot` to interact with the flash. | ||
| 4 | |||
| 5 | # Usage | ||
| 6 | |||
| 7 | Flashing the bootloader | ||
| 8 | |||
| 9 | ``` | ||
| 10 | cargo flash --release --chip RP2040 | ||
| 11 | ``` | ||
| 12 | |||
| 13 | To debug, use `cargo run` and enable the debug feature flag | ||
| 14 | |||
| 15 | ``` rust | ||
| 16 | cargo run --release --features debug | ||
| 17 | ``` | ||
