aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/bootloader/rp/README.md
blob: 064e8727336e8e35a5b2a9d549e7db2d26de3342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Bootloader for RP2040

The bootloader uses `embassy-boot` to interact with the flash.

# Usage

Flashing the bootloader

```
cargo flash --release --chip RP2040
```

To debug, use `cargo run` and enable the debug feature flag

``` rust
cargo run --release --features debug
```