2022-08-18 05:38:58 +00:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
2022-08-19 04:54:53 +00:00
|
|
|
name = "embassy-nrf-rtos-trace-examples"
|
2022-08-18 05:38:58 +00:00
|
|
|
version = "0.1.0"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-08-18 05:38:58 +00:00
|
|
|
|
|
|
|
[features]
|
2023-11-29 16:23:48 +00:00
|
|
|
default = ["log"]
|
2022-08-18 05:38:58 +00:00
|
|
|
log = [
|
|
|
|
"dep:log",
|
2022-08-22 19:46:09 +00:00
|
|
|
"embassy-sync/log",
|
2022-08-18 05:38:58 +00:00
|
|
|
"embassy-executor/log",
|
2022-08-19 04:53:06 +00:00
|
|
|
"embassy-time/log",
|
2022-08-18 05:38:58 +00:00
|
|
|
"embassy-nrf/log",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-04 13:03:30 +00:00
|
|
|
embassy-sync = { version = "0.5.0", path = "../../embassy-sync" }
|
2024-01-11 21:57:29 +00:00
|
|
|
embassy-executor = { version = "0.5.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "rtos-trace", "integrated-timers"] }
|
|
|
|
embassy-time = { version = "0.3.0", path = "../../embassy-time" }
|
2022-08-18 05:38:58 +00:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
|
|
|
|
|
2023-04-18 19:07:36 +00:00
|
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
|
2022-08-18 05:38:58 +00:00
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
panic-probe = { version = "0.3" }
|
|
|
|
rand = { version = "0.8.4", default-features = false }
|
|
|
|
serde = { version = "1.0.136", default-features = false }
|
|
|
|
rtos-trace = "0.1.3"
|
2022-08-20 18:16:06 +00:00
|
|
|
systemview-target = { version = "0.1.2", features = ["callbacks-app", "callbacks-os", "log", "cortex-m"] }
|
2022-08-18 05:38:58 +00:00
|
|
|
log = { version = "0.4.17", optional = true }
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rtos_trace"
|
2023-11-29 16:23:48 +00:00
|
|
|
|
2023-07-27 01:32:40 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 2
|