aboutsummaryrefslogtreecommitdiff
path: root/tests/rp/src
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rp/src')
-rw-r--r--tests/rp/src/bin/cyw43-perf.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rp/src/bin/cyw43-perf.rs b/tests/rp/src/bin/cyw43-perf.rs
index 4b0c7f7b9..53c84e711 100644
--- a/tests/rp/src/bin/cyw43-perf.rs
+++ b/tests/rp/src/bin/cyw43-perf.rs
@@ -45,8 +45,8 @@ async fn main(spawner: Spawner) {
45 } 45 }
46 46
47 // cyw43 firmware needs to be flashed manually: 47 // cyw43 firmware needs to be flashed manually:
48 // probe-rs download 43439A0.bin ---binary-format --chip RP2040 --base-address 0x101b0000 48 // probe-rs download 43439A0.bin --binary-format bin --chip RP2040 --base-address 0x101b0000
49 // probe-rs download 43439A0_clm.bin ---binary-format --chip RP2040 --base-address 0x101f8000 49 // probe-rs download 43439A0_clm.bin --binary-format bin --chip RP2040 --base-address 0x101f8000
50 let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 230321) }; 50 let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 230321) };
51 let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) }; 51 let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) };
52 52