cyw43_perf firmware lengths

This commit is contained in:
Brandon Ros 2023-08-22 19:50:12 -04:00
parent 1725bdd56e
commit 914dcba4d7

View File

@ -49,8 +49,8 @@ async fn main(spawner: Spawner) {
// cyw43 firmware needs to be flashed manually: // cyw43 firmware needs to be flashed manually:
// probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x101b0000 // 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 // probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x101f8000
let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 230321) }; let fw = unsafe { core::slice::from_raw_parts(0x101b0000 as *const u8, 231077) };
let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 4752) }; let clm = unsafe { core::slice::from_raw_parts(0x101f8000 as *const u8, 984) };
let pwr = Output::new(p.PIN_23, Level::Low); let pwr = Output::new(p.PIN_23, Level::Low);
let cs = Output::new(p.PIN_25, Level::High); let cs = Output::new(p.PIN_25, Level::High);