mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
0c22d4cccb
embassy_rp: implement pwm traits from embedded_hal
81 lines
3.4 KiB
TOML
81 lines
3.4 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "embassy-rp2350-examples"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
[dependencies]
|
|
embassy-embedded-hal = { version = "0.2.0", path = "../../embassy-embedded-hal", features = ["defmt"] }
|
|
embassy-sync = { version = "0.6.0", path = "../../embassy-sync", features = ["defmt"] }
|
|
embassy-executor = { version = "0.6.1", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
|
|
embassy-time = { version = "0.3.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
|
|
embassy-rp = { version = "0.2.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp235xa", "binary-info"] }
|
|
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
|
|
embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns"] }
|
|
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
|
|
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
|
embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
|
|
cyw43 = { version = "0.2.0", path = "../../cyw43", features = ["defmt", "firmware-logs", "bluetooth"] }
|
|
cyw43-pio = { version = "0.2.0", path = "../../cyw43-pio", features = ["defmt"] }
|
|
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.4"
|
|
fixed = "1.23.1"
|
|
fixed-macro = "1.2"
|
|
|
|
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
|
|
serde-json-core = "0.5.1"
|
|
|
|
# for assign resources example
|
|
assign-resources = { git = "https://github.com/adamgreig/assign-resources", rev = "94ad10e2729afdf0fd5a77cd12e68409a982f58a" }
|
|
|
|
# for TB6612FNG example
|
|
tb6612fng = "1.0.0"
|
|
|
|
#cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
|
|
cortex-m-rt = "0.7.0"
|
|
critical-section = "1.1"
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
display-interface-spi = "0.4.1"
|
|
embedded-graphics = "0.7.1"
|
|
st7789 = "0.6.1"
|
|
display-interface = "0.4.1"
|
|
byte-slice-cast = { version = "1.2.0", default-features = false }
|
|
smart-leds = "0.3.0"
|
|
heapless = "0.8"
|
|
usbd-hid = "0.8.1"
|
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
|
|
embedded-hal-async = "1.0"
|
|
embedded-hal-bus = { version = "0.1", features = ["async"] }
|
|
embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
|
|
embedded-storage = { version = "0.3" }
|
|
static_cell = "2.1"
|
|
portable-atomic = { version = "1.5", features = ["critical-section"] }
|
|
log = "0.4"
|
|
pio-proc = "0.2"
|
|
pio = "0.2.1"
|
|
rand = { version = "0.8.5", default-features = false }
|
|
embedded-sdmmc = "0.7.0"
|
|
|
|
bt-hci = { version = "0.1.0", default-features = false, features = ["defmt"] }
|
|
trouble-host = { version = "0.1.0", features = ["defmt", "gatt"] }
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
|
|
[profile.dev]
|
|
lto = true
|
|
opt-level = "z"
|
|
|
|
[patch.crates-io]
|
|
trouble-host = { git = "https://github.com/embassy-rs/trouble.git", rev = "4b8c0f499b34e46ca23a56e2d1640ede371722cf" }
|
|
embassy-executor = { path = "../../embassy-executor" }
|
|
embassy-sync = { path = "../../embassy-sync" }
|
|
embassy-futures = { path = "../../embassy-futures" }
|
|
embassy-time = { path = "../../embassy-time" }
|
|
embassy-time-driver = { path = "../../embassy-time-driver" }
|
|
embassy-embedded-hal = { path = "../../embassy-embedded-hal" }
|