aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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