mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
Merge pull request #1709 from brandonros/cyw43-firmware-sync
sync latest cyw43-firmware
This commit is contained in:
commit
cc414e63d3
Binary file not shown.
Binary file not shown.
@ -2,4 +2,8 @@
|
||||
|
||||
Firmware obtained from https://github.com/Infineon/wifi-host-driver/tree/master/WiFi_Host_Driver/resources/firmware/COMPONENT_43439
|
||||
|
||||
Licensed under the [Infineon Permissive Binary License](./LICENSE-permissive-binary-license-1.0.txt)
|
||||
Licensed under the [Infineon Permissive Binary License](./LICENSE-permissive-binary-license-1.0.txt)
|
||||
|
||||
## Changelog
|
||||
|
||||
* 2023-07-28: synced with `ad3bad0` - Update 43439 fw from 7.95.55 ot 7.95.62
|
||||
|
@ -48,9 +48,9 @@ async fn main(spawner: Spawner) {
|
||||
}
|
||||
|
||||
// cyw43 firmware needs to be flashed manually:
|
||||
// probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x101c0000
|
||||
// probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x101b0000
|
||||
// probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x101f8000
|
||||
let fw = unsafe { core::slice::from_raw_parts(0x101c0000 as *const u8, 224190) };
|
||||
let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 230321) };
|
||||
let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) };
|
||||
|
||||
let pwr = Output::new(p.PIN_23, Level::Low);
|
||||
|
Loading…
Reference in New Issue
Block a user