Merge pull request from brandonros/cyw43-firmware-sync

sync latest cyw43-firmware
This commit is contained in:
Dario Nieuwenhuis 2023-07-28 21:59:53 +00:00 committed by GitHub
commit cc414e63d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions
tests/rp/src/bin

View file

@ -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);