Updated wifi firmware and included their license

This commit is contained in:
2023-08-29 19:08:24 +02:00
parent 2a436071bf
commit 4b55392933
5 changed files with 61 additions and 3 deletions

View File

@@ -141,9 +141,9 @@ async fn main(spawner: Spawner) {
// === WIFI ===
// To make flashing faster for development, you may want to flash the firmwares independently
// at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
// probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
// probe-rs download 43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000
let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) };
// probe-rs download firmware/43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
// probe-rs download firmware/43439A0_clm.bin --format bin --chip RP2040 --base-address 0x10140000
let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) };
let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
// let fw = include_bytes!("../firmware/43439A0.bin");
// let clm = include_bytes!("../firmware/43439A0_clm.bin");