aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-06-18 02:24:25 +0200
committerGitHub <[email protected]>2022-06-18 02:24:25 +0200
commit3fd4ee34ecd5bae94a4ccf14f0322d6d94a4e297 (patch)
tree42000d240682aac65ed4869dc6cb9a7a18dec818 /docs/modules/ROOT/examples
parent88e36a70bdddaa3ac2ddccd1dcd299b321f8c86c (diff)
parentdd99356062eaaeac3c2fa0b82dbbcaf765435c2a (diff)
Merge pull request #821 from embassy-rs/defmt-trace
Add env DEFMT_LOG=trace to all examples.
Diffstat (limited to 'docs/modules/ROOT/examples')
-rw-r--r--docs/modules/ROOT/examples/basic/.cargo/config.toml3
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/.cargo/config.toml3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/modules/ROOT/examples/basic/.cargo/config.toml b/docs/modules/ROOT/examples/basic/.cargo/config.toml
index c75b5c539..8ca28df39 100644
--- a/docs/modules/ROOT/examples/basic/.cargo/config.toml
+++ b/docs/modules/ROOT/examples/basic/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip nRF52840_xxAA"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabi" 6target = "thumbv7em-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/docs/modules/ROOT/examples/layer-by-layer/.cargo/config.toml b/docs/modules/ROOT/examples/layer-by-layer/.cargo/config.toml
index 946ff250b..3012f05dc 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/.cargo/config.toml
+++ b/docs/modules/ROOT/examples/layer-by-layer/.cargo/config.toml
@@ -9,3 +9,6 @@ rustflags = [
9 9
10[build] 10[build]
11target = "thumbv7em-none-eabihf" 11target = "thumbv7em-none-eabihf"
12
13[env]
14DEFMT_LOG = "trace"