Firmware for the b-parasite board, but in Rust.

Use Zig and cargo-zigbuild for CI

+8 -1
+7
.tangled/workflows/test.yml
··· 7 7 dependencies: 8 8 nixpkgs: 9 9 - rustup 10 + - zig 10 11 11 12 steps: 12 13 - name: Install Nightly 13 14 command: rustup toolchain install nightly 14 15 - name: Install toolchain 15 16 command: rustup +nightly target install thumbv7em-none-eabihf 17 + - name: Install Zigbuild 18 + command: cargo install --locked cargo-zigbuild 16 19 - name: Format Check 17 20 command: cargo fmt --check 21 + - name: Defmt Build 22 + command: cargo zigbuild --release --locked 23 + - name: Plain Build 24 + command: cargo zigbuild --release --locked --no-default-features
+1 -1
Cargo.toml
··· 20 20 codegen-units = 1 21 21 22 22 [profile.release] 23 - debug = false 23 + debug = true 24 24 lto = true 25 25 opt-level = "z" 26 26 codegen-units = 1