2021-06-07 17:57:27 +02:00
|
|
|
[package]
|
2022-06-18 02:15:48 +02:00
|
|
|
edition = "2021"
|
2021-07-29 18:14:01 +02:00
|
|
|
name = "embassy-stm32l4-examples"
|
2021-06-07 17:57:27 +02:00
|
|
|
version = "0.1.0"
|
2022-10-07 12:41:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-06-07 17:57:27 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-07-22 22:58:29 +02:00
|
|
|
# Change stm32l4s5vi to your chip name, if necessary.
|
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "unstable-pac", "stm32l4s5vi", "time-driver-any", "exti", "unstable-traits", "chrono"] }
|
2023-04-13 23:03:21 +02:00
|
|
|
embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["defmt"] }
|
2023-06-09 16:14:13 +02:00
|
|
|
embassy-executor = { version = "0.2.0", path = "../../embassy-executor", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
|
2023-07-05 23:54:45 +02:00
|
|
|
embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
|
2022-05-26 18:54:58 +02:00
|
|
|
embassy-embedded-hal = { version = "0.1.0", path = "../../embassy-embedded-hal" }
|
2023-01-11 17:58:15 +01:00
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
2021-06-07 17:57:27 +02:00
|
|
|
|
2021-11-15 17:08:51 +01:00
|
|
|
defmt = "0.3"
|
2022-11-29 21:15:24 +01:00
|
|
|
defmt-rtt = "0.4"
|
2021-06-07 17:57:27 +02:00
|
|
|
|
2022-08-14 23:16:06 +02:00
|
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
2021-08-19 23:32:22 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
2021-09-11 00:10:46 +02:00
|
|
|
embedded-hal = "0.2.6"
|
2023-07-04 19:53:06 +02:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" }
|
|
|
|
embedded-hal-async = { version = "=0.2.0-alpha.2" }
|
2021-11-15 17:08:51 +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"] }
|
|
|
|
heapless = { version = "0.7.5", default-features = false }
|
2023-07-05 12:23:11 +02:00
|
|
|
chrono = { version = "^0.4", default-features = false }
|
2021-06-08 20:04:56 +02:00
|
|
|
|
|
|
|
micromath = "2.0.0"
|
2023-07-27 03:32:40 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 2
|