From dd99356062eaaeac3c2fa0b82dbbcaf765435c2a Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 18 Jun 2022 01:54:07 +0200 Subject: Add env DEFMT_LOG=trace to all examples. --- examples/stm32f2/.cargo/config | 6 ------ examples/stm32f2/.cargo/config.toml | 9 +++++++++ 2 files changed, 9 insertions(+), 6 deletions(-) delete mode 100644 examples/stm32f2/.cargo/config create mode 100644 examples/stm32f2/.cargo/config.toml (limited to 'examples/stm32f2') diff --git a/examples/stm32f2/.cargo/config b/examples/stm32f2/.cargo/config deleted file mode 100644 index 30b6d1909..000000000 --- a/examples/stm32f2/.cargo/config +++ /dev/null @@ -1,6 +0,0 @@ -[target.'cfg(all(target_arch = "arm", target_os = "none"))'] -# replace STM32F207ZGTx with your chip as listed in `probe-run --list-chips` -runner = "probe-run --chip STM32F207ZGTx" - -[build] -target = "thumbv7m-none-eabi" diff --git a/examples/stm32f2/.cargo/config.toml b/examples/stm32f2/.cargo/config.toml new file mode 100644 index 000000000..197fadf92 --- /dev/null +++ b/examples/stm32f2/.cargo/config.toml @@ -0,0 +1,9 @@ +[target.'cfg(all(target_arch = "arm", target_os = "none"))'] +# replace STM32F207ZGTx with your chip as listed in `probe-run --list-chips` +runner = "probe-run --chip STM32F207ZGTx" + +[build] +target = "thumbv7m-none-eabi" + +[env] +DEFMT_LOG = "trace" -- cgit