30 lines
1.3 KiB
TOML
30 lines
1.3 KiB
TOML
[package]
|
|
authors = ["Priec <filippriec@gmail.com>"]
|
|
name = "dma_gpio"
|
|
edition = "2024"
|
|
version = "0.1.0"
|
|
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.5"
|
|
panic-halt = "1.0.0"
|
|
|
|
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", branch = "main", features = ["arch-cortex-m", "executor-thread"] }
|
|
embassy-futures = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
|
|
embassy-sync = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
|
|
embassy-time = { git = "https://github.com/embassy-rs/embassy.git", branch = "main", features = ["tick-hz-32_768"] }
|
|
embassy-hal-internal = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
|
|
embassy-usb = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
|
|
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy.git", branch = "main", features = ["unstable-pac", "stm32u575zi", "time-driver-tim2", "memory-x", "defmt"] }
|
|
|
|
embedded-hal = "1.0.0"
|
|
embedded-graphics = "0.8.1"
|
|
heapless = { version = "0.9.1", default-features = false }
|
|
micromath = "2.1.0"
|
|
tinybmp = "0.6.0"
|
|
panic-probe = { version = "1.0.0", features = ["defmt"] }
|
|
defmt-rtt = "1.1.0"
|
|
defmt = "1.0.1"
|
|
static_cell = "2.1.1"
|