diff options
| author | Florian Grandel <[email protected]> | 2025-04-03 22:46:35 +0200 |
|---|---|---|
| committer | Florian Grandel <[email protected]> | 2025-08-30 17:54:03 +0200 |
| commit | 47e45c982126d52559353308ebe328301ebbf1c6 (patch) | |
| tree | f2390824c33086fe25fa4d2502159e2ddc9d10d2 | |
| parent | f86cf87f2f20f723e2ba2fe7d83908a2b3bac2d1 (diff) | |
rtos-trace: upgraded feature support
Upgrade rtos-trace for start/stop and marker support.
These methods are not used in embassy code but can be useful in client
code.
Signed-off-by: Florian Grandel <[email protected]>
| -rw-r--r-- | embassy-executor/CHANGELOG.md | 1 | ||||
| -rw-r--r-- | embassy-executor/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/nrf-rtos-trace/Cargo.toml | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md index f2db46ef9..e093aaf98 100644 --- a/embassy-executor/CHANGELOG.md +++ b/embassy-executor/CHANGELOG.md | |||
| @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 9 | ## Unreleased - ReleaseDate | 9 | ## Unreleased - ReleaseDate |
| 10 | 10 | ||
| 11 | - Added new metadata API for tasks | 11 | - Added new metadata API for tasks |
| 12 | - Upgraded rtos-trace | ||
| 12 | 13 | ||
| 13 | ## 0.9.0 - 2025-08-26 | 14 | ## 0.9.0 - 2025-08-26 |
| 14 | 15 | ||
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml index 79680ae74..dc423aba2 100644 --- a/embassy-executor/Cargo.toml +++ b/embassy-executor/Cargo.toml | |||
| @@ -51,7 +51,7 @@ features = ["defmt", "arch-cortex-m", "executor-thread", "executor-interrupt"] | |||
| 51 | [dependencies] | 51 | [dependencies] |
| 52 | defmt = { version = "1.0.1", optional = true } | 52 | defmt = { version = "1.0.1", optional = true } |
| 53 | log = { version = "0.4.14", optional = true } | 53 | log = { version = "0.4.14", optional = true } |
| 54 | rtos-trace = { version = "0.1.3", optional = true } | 54 | rtos-trace = { version = "0.2", optional = true } |
| 55 | 55 | ||
| 56 | embassy-executor-macros = { version = "0.7.0", path = "../embassy-executor-macros" } | 56 | embassy-executor-macros = { version = "0.7.0", path = "../embassy-executor-macros" } |
| 57 | embassy-time-driver = { version = "0.2.1", path = "../embassy-time-driver", optional = true } | 57 | embassy-time-driver = { version = "0.2.1", path = "../embassy-time-driver", optional = true } |
diff --git a/examples/nrf-rtos-trace/Cargo.toml b/examples/nrf-rtos-trace/Cargo.toml index a2dc0c7ad..c9eeaaac7 100644 --- a/examples/nrf-rtos-trace/Cargo.toml +++ b/examples/nrf-rtos-trace/Cargo.toml | |||
| @@ -25,8 +25,8 @@ cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-sing | |||
| 25 | cortex-m-rt = "0.7.0" | 25 | cortex-m-rt = "0.7.0" |
| 26 | panic-probe = "1.0.0" | 26 | panic-probe = "1.0.0" |
| 27 | serde = { version = "1.0.136", default-features = false } | 27 | serde = { version = "1.0.136", default-features = false } |
| 28 | rtos-trace = "0.1.3" | 28 | rtos-trace = "0.2" |
| 29 | systemview-target = { version = "0.1.2", features = ["callbacks-app", "callbacks-os", "log", "cortex-m"] } | 29 | systemview-target = { version = "0.2", features = ["callbacks-app", "callbacks-os", "log", "cortex-m"] } |
| 30 | log = { version = "0.4.17", optional = true } | 30 | log = { version = "0.4.17", optional = true } |
| 31 | 31 | ||
| 32 | [[bin]] | 32 | [[bin]] |
