aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcyw43-firmware/43439A0.binbin224190 -> 230321 bytes
-rwxr-xr-xcyw43-firmware/43439A0_clm.binbin4752 -> 4752 bytes
-rw-r--r--cyw43-firmware/README.md6
-rw-r--r--tests/rp/src/bin/cyw43-perf.rs4
4 files changed, 7 insertions, 3 deletions
diff --git a/cyw43-firmware/43439A0.bin b/cyw43-firmware/43439A0.bin
index b46b3beff..017375277 100755
--- a/cyw43-firmware/43439A0.bin
+++ b/cyw43-firmware/43439A0.bin
Binary files differ
diff --git a/cyw43-firmware/43439A0_clm.bin b/cyw43-firmware/43439A0_clm.bin
index 6e3ba786b..1fedd753a 100755
--- a/cyw43-firmware/43439A0_clm.bin
+++ b/cyw43-firmware/43439A0_clm.bin
Binary files differ
diff --git a/cyw43-firmware/README.md b/cyw43-firmware/README.md
index 7381fdc56..db3d9c9cf 100644
--- a/cyw43-firmware/README.md
+++ b/cyw43-firmware/README.md
@@ -2,4 +2,8 @@
2 2
3Firmware obtained from https://github.com/Infineon/wifi-host-driver/tree/master/WiFi_Host_Driver/resources/firmware/COMPONENT_43439 3Firmware obtained from https://github.com/Infineon/wifi-host-driver/tree/master/WiFi_Host_Driver/resources/firmware/COMPONENT_43439
4 4
5Licensed under the [Infineon Permissive Binary License](./LICENSE-permissive-binary-license-1.0.txt) \ No newline at end of file 5Licensed under the [Infineon Permissive Binary License](./LICENSE-permissive-binary-license-1.0.txt)
6
7## Changelog
8
9* 2023-07-28: synced with `ad3bad0` - Update 43439 fw from 7.95.55 ot 7.95.62
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);