Move firmware out of src

This commit is contained in:
Invariantspace 2024-10-12 15:14:51 -07:00
parent 473c6cf560
commit 72b0d3811d
No known key found for this signature in database
GPG key ID: EBC4A20067373921
3 changed files with 2 additions and 2 deletions

View file

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