aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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 bc127e2e5..fffdabc9b 100644
--- a/tests/rp/src/bin/cyw43-perf.rs
+++ b/tests/rp/src/bin/cyw43-perf.rs
@@ -48,9 +48,9 @@ async fn main(spawner: Spawner) {
48 } 48 }
49 49
50 // cyw43 firmware needs to be flashed manually: 50 // cyw43 firmware needs to be flashed manually:
51 // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x101c0000 51 // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x101b0000
52 // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x101f8000 52 // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x101f8000
53 let fw = unsafe { core::slice::from_raw_parts(0x101c0000 as *const u8, 224190) }; 53 let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 230321) };
54 let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) }; 54 let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) };
55 55
56 let pwr = Output::new(p.PIN_23, Level::Low); 56 let pwr = Output::new(p.PIN_23, Level::Low);