aboutsummaryrefslogtreecommitdiff
path: root/examples/boot
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 /examples/boot
parent88e36a70bdddaa3ac2ddccd1dcd299b321f8c86c (diff)
parentdd99356062eaaeac3c2fa0b82dbbcaf765435c2a (diff)
Merge pull request #821 from embassy-rs/defmt-trace
Add env DEFMT_LOG=trace to all examples.
Diffstat (limited to 'examples/boot')
-rw-r--r--examples/boot/.cargo/config.toml3
-rw-r--r--examples/boot/nrf/.cargo/config.toml3
-rw-r--r--examples/boot/stm32f3/.cargo/config.toml3
-rw-r--r--examples/boot/stm32f7/.cargo/config.toml3
-rw-r--r--examples/boot/stm32h7/.cargo/config.toml3
-rw-r--r--examples/boot/stm32l0/.cargo/config.toml3
-rw-r--r--examples/boot/stm32l1/.cargo/config.toml3
-rw-r--r--examples/boot/stm32l4/.cargo/config.toml3
-rw-r--r--examples/boot/stm32wl/.cargo/config.toml3
9 files changed, 27 insertions, 0 deletions
diff --git a/examples/boot/.cargo/config.toml b/examples/boot/.cargo/config.toml
index bbe06fd03..de3a814f7 100644
--- a/examples/boot/.cargo/config.toml
+++ b/examples/boot/.cargo/config.toml
@@ -4,3 +4,6 @@ build-std-features = ["panic_immediate_abort"]
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabi" 6target = "thumbv7em-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/nrf/.cargo/config.toml b/examples/boot/nrf/.cargo/config.toml
index c75b5c539..8ca28df39 100644
--- a/examples/boot/nrf/.cargo/config.toml
+++ b/examples/boot/nrf/.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/examples/boot/stm32f3/.cargo/config.toml b/examples/boot/stm32f3/.cargo/config.toml
index eb8a8b335..a76d6cab4 100644
--- a/examples/boot/stm32f3/.cargo/config.toml
+++ b/examples/boot/stm32f3/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32F303VCTx"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabihf" 6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32f7/.cargo/config.toml b/examples/boot/stm32f7/.cargo/config.toml
index df5114520..a90e1ccbb 100644
--- a/examples/boot/stm32f7/.cargo/config.toml
+++ b/examples/boot/stm32f7/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32F767ZITx -v"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabihf" 6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32h7/.cargo/config.toml b/examples/boot/stm32h7/.cargo/config.toml
index 8475e7f66..fefdd370e 100644
--- a/examples/boot/stm32h7/.cargo/config.toml
+++ b/examples/boot/stm32h7/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32H743ZITx"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabihf" 6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32l0/.cargo/config.toml b/examples/boot/stm32l0/.cargo/config.toml
index 840faa62e..2627967ab 100644
--- a/examples/boot/stm32l0/.cargo/config.toml
+++ b/examples/boot/stm32l0/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32L072CZTx"
4 4
5[build] 5[build]
6target = "thumbv6m-none-eabi" 6target = "thumbv6m-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32l1/.cargo/config.toml b/examples/boot/stm32l1/.cargo/config.toml
index 04985720b..404b6b55c 100644
--- a/examples/boot/stm32l1/.cargo/config.toml
+++ b/examples/boot/stm32l1/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32L151CBxxA"
4 4
5[build] 5[build]
6target = "thumbv7m-none-eabi" 6target = "thumbv7m-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32l4/.cargo/config.toml b/examples/boot/stm32l4/.cargo/config.toml
index 7b6c4c0ac..43520e323 100644
--- a/examples/boot/stm32l4/.cargo/config.toml
+++ b/examples/boot/stm32l4/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32L475VG"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabihf" 6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/stm32wl/.cargo/config.toml b/examples/boot/stm32wl/.cargo/config.toml
index 60076e06b..e395d75b4 100644
--- a/examples/boot/stm32wl/.cargo/config.toml
+++ b/examples/boot/stm32wl/.cargo/config.toml
@@ -4,3 +4,6 @@ runner = "probe-run --chip STM32WLE5JCIx"
4 4
5[build] 5[build]
6target = "thumbv7em-none-eabihf" 6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"