aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf-rtos-trace
diff options
context:
space:
mode:
authorPiotr Esden-Tempski <[email protected]>2023-07-26 18:32:40 -0700
committerPiotr Esden-Tempski <[email protected]>2023-07-26 18:32:40 -0700
commit858ddf6777d6df0e8c02921d29cd6a8095a7cdad (patch)
tree9cb7352469aea66ff666c403f25ffde9b174e2a1 /examples/nrf-rtos-trace
parent77e34c5e8a7d31eac6fdc144a329027a0ce731a5 (diff)
Added debug=2 in release profile to all examples.
This makes rtt output work right when using `cargo run` in release mode. Debug was already enabled for release builds in some of the examples but not all.
Diffstat (limited to 'examples/nrf-rtos-trace')
-rw-r--r--examples/nrf-rtos-trace/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/nrf-rtos-trace/Cargo.toml b/examples/nrf-rtos-trace/Cargo.toml
index 30b67b7b2..068474e7a 100644
--- a/examples/nrf-rtos-trace/Cargo.toml
+++ b/examples/nrf-rtos-trace/Cargo.toml
@@ -34,3 +34,6 @@ log = { version = "0.4.17", optional = true }
34[[bin]] 34[[bin]]
35name = "rtos_trace" 35name = "rtos_trace"
36required-features = ["nightly"] 36required-features = ["nightly"]
37
38[profile.release]
39debug = 2