diff options
Diffstat (limited to 'examples/rp/src')
| -rw-r--r-- | examples/rp/src/bin/wifi_ap_tcp_server.rs | 4 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_blinky.rs | 4 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_scan.rs | 4 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_tcp_server.rs | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/examples/rp/src/bin/wifi_ap_tcp_server.rs b/examples/rp/src/bin/wifi_ap_tcp_server.rs index e8197390c..310e84d92 100644 --- a/examples/rp/src/bin/wifi_ap_tcp_server.rs +++ b/examples/rp/src/bin/wifi_ap_tcp_server.rs | |||
| @@ -42,8 +42,8 @@ async fn main(spawner: Spawner) { | |||
| 42 | 42 | ||
| 43 | // To make flashing faster for development, you may want to flash the firmwares independently | 43 | // To make flashing faster for development, you may want to flash the firmwares independently |
| 44 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: | 44 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: |
| 45 | // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 | 45 | // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 |
| 46 | // probe-rs-cli download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 | 46 | // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 |
| 47 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; | 47 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; |
| 48 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; | 48 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; |
| 49 | 49 | ||
diff --git a/examples/rp/src/bin/wifi_blinky.rs b/examples/rp/src/bin/wifi_blinky.rs index be965807b..bbcb1b5ec 100644 --- a/examples/rp/src/bin/wifi_blinky.rs +++ b/examples/rp/src/bin/wifi_blinky.rs | |||
| @@ -27,8 +27,8 @@ async fn main(spawner: Spawner) { | |||
| 27 | 27 | ||
| 28 | // To make flashing faster for development, you may want to flash the firmwares independently | 28 | // To make flashing faster for development, you may want to flash the firmwares independently |
| 29 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: | 29 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: |
| 30 | // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 | 30 | // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 |
| 31 | // probe-rs-cli download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 | 31 | // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 |
| 32 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; | 32 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; |
| 33 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; | 33 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; |
| 34 | 34 | ||
diff --git a/examples/rp/src/bin/wifi_scan.rs b/examples/rp/src/bin/wifi_scan.rs index 79534f229..391e12282 100644 --- a/examples/rp/src/bin/wifi_scan.rs +++ b/examples/rp/src/bin/wifi_scan.rs | |||
| @@ -39,8 +39,8 @@ async fn main(spawner: Spawner) { | |||
| 39 | 39 | ||
| 40 | // To make flashing faster for development, you may want to flash the firmwares independently | 40 | // To make flashing faster for development, you may want to flash the firmwares independently |
| 41 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: | 41 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: |
| 42 | // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 | 42 | // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 |
| 43 | // probe-rs-cli download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 | 43 | // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 |
| 44 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; | 44 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; |
| 45 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; | 45 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; |
| 46 | 46 | ||
diff --git a/examples/rp/src/bin/wifi_tcp_server.rs b/examples/rp/src/bin/wifi_tcp_server.rs index 026e056fa..e9d1079a6 100644 --- a/examples/rp/src/bin/wifi_tcp_server.rs +++ b/examples/rp/src/bin/wifi_tcp_server.rs | |||
| @@ -42,8 +42,8 @@ async fn main(spawner: Spawner) { | |||
| 42 | 42 | ||
| 43 | // To make flashing faster for development, you may want to flash the firmwares independently | 43 | // To make flashing faster for development, you may want to flash the firmwares independently |
| 44 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: | 44 | // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: |
| 45 | // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 | 45 | // probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 |
| 46 | // probe-rs-cli download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 | 46 | // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000 |
| 47 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; | 47 | //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; |
| 48 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; | 48 | //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; |
| 49 | 49 | ||
