aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJacob Davis-Hansson <[email protected]>2023-03-19 19:16:26 +0100
committerGitHub <[email protected]>2023-03-19 19:16:26 +0100
commit67743bb1221fefc677bd2f207d0c382a85a46b7f (patch)
tree36a7ad600f1d87db627ea044229b85fdba5f0e7d /examples
parente33b99e9ec9902d6f93582530fd9cfe38953ce69 (diff)
Update pre-flashed command to match file name
Super minor, just to help the next person avoid the little stumble.
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rpi-pico-w/src/main.rs b/examples/rpi-pico-w/src/main.rs
index c706e121d..ad4e98954 100644
--- a/examples/rpi-pico-w/src/main.rs
+++ b/examples/rpi-pico-w/src/main.rs
@@ -53,7 +53,7 @@ async fn main(spawner: Spawner) {
53 // To make flashing faster for development, you may want to flash the firmwares independently 53 // To make flashing faster for development, you may want to flash the firmwares independently
54 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: 54 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
55 // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 55 // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
56 // probe-rs-cli download 43439A0.clm_blob --format bin --chip RP2040 --base-address 0x10140000 56 // probe-rs-cli download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000
57 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; 57 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) };
58 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; 58 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
59 59