aboutsummaryrefslogtreecommitdiff
path: root/examples/rp/src/bin/wifi_tcp_server.rs
diff options
context:
space:
mode:
authorrafael <rafael>2024-06-15 14:39:41 +0200
committerrafael <rafael>2024-06-15 14:39:41 +0200
commit8b903e88736a2cb8906d216a4e7a291b670968b3 (patch)
treef4101d4604fa440ac032ab5a27533ede02e8e5ad /examples/rp/src/bin/wifi_tcp_server.rs
parentc818125c22034dd15b8525b3d41219a566542cee (diff)
--binary-format bin in rp examples
Diffstat (limited to 'examples/rp/src/bin/wifi_tcp_server.rs')
-rw-r--r--examples/rp/src/bin/wifi_tcp_server.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rp/src/bin/wifi_tcp_server.rs b/examples/rp/src/bin/wifi_tcp_server.rs
index 4246115f9..bbb531807 100644
--- a/examples/rp/src/bin/wifi_tcp_server.rs
+++ b/examples/rp/src/bin/wifi_tcp_server.rs
@@ -49,8 +49,8 @@ async fn main(spawner: Spawner) {
49 49
50 // To make flashing faster for development, you may want to flash the firmwares independently 50 // To make flashing faster for development, you may want to flash the firmwares independently
51 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: 51 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
52 // probe-rs download 43439A0.bin ---binary-format bin --chip RP2040 --base-address 0x10100000 52 // probe-rs download 43439A0.bin --binary-format bin --chip RP2040 --base-address 0x10100000
53 // probe-rs download 43439A0_clm.bin ---binary-format bin --chip RP2040 --base-address 0x10140000 53 // probe-rs download 43439A0_clm.bin --binary-format bin --chip RP2040 --base-address 0x10140000
54 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) }; 54 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) };
55 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; 55 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
56 56