From 72b0d3811d9634a2a195fd53961a49da61419087 Mon Sep 17 00:00:00 2001 From: macronova Date: Sat, 12 Oct 2024 15:14:51 -0700 Subject: [PATCH] Move firmware out of src --- {src/firmware => firmware}/43439A0.bin | Bin {src/firmware => firmware}/43439A0_clm.bin | Bin src/main.rs | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename {src/firmware => firmware}/43439A0.bin (100%) rename {src/firmware => firmware}/43439A0_clm.bin (100%) diff --git a/src/firmware/43439A0.bin b/firmware/43439A0.bin similarity index 100% rename from src/firmware/43439A0.bin rename to firmware/43439A0.bin diff --git a/src/firmware/43439A0_clm.bin b/firmware/43439A0_clm.bin similarity index 100% rename from src/firmware/43439A0_clm.bin rename to firmware/43439A0_clm.bin diff --git a/src/main.rs b/src/main.rs index de0610a..107b853 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,10 +34,10 @@ async fn main(spawner: Spawner) { let hal = embassy_rp::init(Default::default()); // wireless firmware binary - let fw = include_bytes!("./firmware/43439A0.bin"); + let fw = include_bytes!("../firmware/43439A0.bin"); // wireless country locale matrix - let clm = include_bytes!("./firmware/43439A0_clm.bin"); + let clm = include_bytes!("../firmware/43439A0_clm.bin"); // wireless power on signal let pwr = Output::new(hal.PIN_23, Level::Low);