itpdp/pico/Cargo.toml
2026-05-03 15:22:22 +02:00

45 lines
1.1 KiB
TOML

[package]
name = "pico"
version = "0.1.0"
edition = "2024"
[dependencies]
hd44780-driver = { git = "https://github.com/JohnDoneth/hd44780-driver.git", rev = "9009f2c24771ba0a20f8f7534471c9869188f76c"}
embedded-hal-compat = "0.13.0"
embassy-usb-logger = "0.5.1"
log = "0.4"
liquid_crystal = "0.2"
ag-lcd="0.3"
embassy-executor = { version = "0.10.0", features = [
"platform-cortex-m",
"executor-thread",
"executor-interrupt",
"defmt",
] }
embassy-rp = { version = "0.10.0", features = [
"defmt",
"unstable-pac",
"time-driver",
"critical-section-impl",
"rp2040",
] }
embassy-time = { version = "0.5.1", features = [
"defmt",
"defmt-timestamp-uptime",
] }
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
cortex-m-rt = "0.7.5"
critical-section = "1.2.0"
static_cell = "2.1.1"
portable-atomic = { version = "1.13.1", features = ["critical-section"] }
defmt = "1.0.1"
defmt-rtt = "1.1.0"
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
cyw43 = { version = "0.7.0", features = ["defmt", "firmware-logs"] }
cyw43-pio = { version = "0.10.0", features = ["defmt"] }