Initial commit

This commit is contained in:
JP Stringham
2026-02-21 22:39:12 -05:00
commit 6751fb88ef
7 changed files with 1408 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "pico-pio-tests"
version = "0.1.0"
edition = "2024"
[dependencies]
cortex-m = { version = "0.7.7", features = [ "critical-section-single-core" ] }
cortex-m-rt = "0.7.5"
defmt = "1.0.1"
defmt-rtt = "1.1.0"
embedded-hal = "1.0.0"
panic-probe = { version = "1.0.0", features = [ "print-rtt" ]}
pio = "0.3.0"
rp2040-boot2 = "0.3.0"
rp2040-hal = "0.12.0"
sh1106-pico-rs = { path = "../sh1106-pico-rs" }
[features]
logging = []