[package] name = "pm-grid" version = "0.1.0" edition = "2021" description = "PM_G-1 'Grid' firmware (RP2040 / Pimoroni Pico Scroll Pack PIM545). 17x7 IS31FL3731 LED metronome — Rust sibling of pico-scroll/app.py." [dependencies] rp2040-hal = { version = "0.10", features = ["rt", "critical-section-impl"] } rp2040-boot2 = "0.3" cortex-m = "0.7" cortex-m-rt = "0.7" panic-halt = "0.2" # plain Pico is flashed via UF2/BOOTSEL — no probe, so just halt on panic embedded-hal = "1" track-format = { path = "../track-format" } embedded-alloc = "0.6" # track-format parses into Vec/String → needs a global allocator [profile.release] opt-level = "s" lto = true debug = 2