2021-03-29 04:11:32 +02:00
|
|
|
[package]
|
2022-02-16 03:54:39 +01:00
|
|
|
edition = "2021"
|
2021-03-29 04:11:32 +02:00
|
|
|
name = "embassy-rp-examples"
|
|
|
|
version = "0.1.0"
|
2022-10-07 12:41:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-03-29 04:11:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-06 22:25:24 +02:00
|
|
|
embassy-embedded-hal = { version = "0.1.0", path = "../../embassy-embedded-hal", features = ["defmt"] }
|
2023-10-31 09:18:00 +01:00
|
|
|
embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = ["defmt"] }
|
2023-08-23 20:34:37 +02:00
|
|
|
embassy-executor = { version = "0.3.0", path = "../../embassy-executor", features = ["nightly", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
|
2023-10-16 20:07:48 +02:00
|
|
|
embassy-time = { version = "0.1.5", path = "../../embassy-time", features = ["nightly", "unstable-traits", "defmt", "defmt-timestamp-uptime"] }
|
2023-04-26 22:15:10 +02:00
|
|
|
embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "critical-section-impl"] }
|
2022-12-26 03:33:49 +01:00
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
2023-10-15 19:38:42 +02:00
|
|
|
embassy-net = { version = "0.2.0", path = "../../embassy-net", features = ["defmt", "nightly", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
|
2023-08-15 23:02:53 +02:00
|
|
|
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
|
2022-09-22 16:48:35 +02:00
|
|
|
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
2022-11-17 09:26:15 +01:00
|
|
|
embassy-usb-logger = { version = "0.1.0", path = "../../embassy-usb-logger" }
|
2023-04-28 20:33:20 +02:00
|
|
|
embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["time", "defmt"] }
|
2023-09-24 17:33:03 +02:00
|
|
|
lora-phy = { version = "2" }
|
2023-09-25 17:45:53 +02:00
|
|
|
lorawan-device = { version = "0.11.0", default-features = false, features = ["async", "external-lora-phy"] }
|
|
|
|
lorawan = { version = "0.7.4", default-features = false, features = ["default-crypto"] }
|
2023-05-30 23:22:34 +02:00
|
|
|
cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] }
|
|
|
|
cyw43-pio = { path = "../../cyw43-pio", features = ["defmt", "overclock"] }
|
2021-03-29 04:11:32 +02:00
|
|
|
|
2021-11-15 17:19:19 +01:00
|
|
|
defmt = "0.3"
|
2022-11-29 21:15:24 +01:00
|
|
|
defmt-rtt = "0.4"
|
2023-05-06 11:36:07 +02:00
|
|
|
fixed = "1.23.1"
|
|
|
|
fixed-macro = "1.2"
|
2021-03-29 04:11:32 +02:00
|
|
|
|
2022-12-10 08:26:35 +01:00
|
|
|
#cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
2023-04-18 21:07:36 +02:00
|
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
|
2021-08-19 00:56:11 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
2021-11-15 17:19:19 +01:00
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
2021-09-11 00:10:46 +02:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
2021-07-20 10:06:57 +02:00
|
|
|
display-interface-spi = "0.4.1"
|
|
|
|
embedded-graphics = "0.7.1"
|
|
|
|
st7789 = "0.6.1"
|
2022-02-16 03:54:39 +01:00
|
|
|
display-interface = "0.4.1"
|
|
|
|
byte-slice-cast = { version = "1.2.0", default-features = false }
|
2023-03-11 08:58:28 +01:00
|
|
|
smart-leds = "0.3.0"
|
2023-05-30 23:22:34 +02:00
|
|
|
heapless = "0.7.15"
|
2023-07-16 12:31:56 +02:00
|
|
|
usbd-hid = "0.6.1"
|
2022-04-22 19:58:24 +02:00
|
|
|
|
2023-08-16 00:40:56 +02:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.1" }
|
|
|
|
embedded-hal-async = "1.0.0-rc.1"
|
|
|
|
embedded-hal-bus = { version = "0.1.0-rc.1", features = ["async"] }
|
2023-10-03 22:15:02 +02:00
|
|
|
embedded-io-async = { version = "0.6.0", features = ["defmt-03"] }
|
2022-10-26 10:01:52 +02:00
|
|
|
embedded-storage = { version = "0.3" }
|
2023-06-01 01:32:11 +02:00
|
|
|
static_cell = { version = "1.1", features = ["nightly"]}
|
2022-11-17 09:26:15 +01:00
|
|
|
log = "0.4"
|
2022-07-27 22:45:46 +02:00
|
|
|
pio-proc = "0.2"
|
2022-12-26 22:30:22 +01:00
|
|
|
pio = "0.2.1"
|
2023-05-31 01:01:30 +02:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
2022-09-28 10:20:04 +02:00
|
|
|
|
|
|
|
[profile.release]
|
2023-08-16 00:40:56 +02:00
|
|
|
debug = 2
|