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/stm32h7/.cargo/config | 5 ----- examples/stm32h7/.cargo/config.toml | 8 ++++++++ 2 files changed, 8 insertions(+), 5 deletions(-) delete mode 100644 examples/stm32h7/.cargo/config create mode 100644 examples/stm32h7/.cargo/config.toml (limited to 'examples/stm32h7') diff --git a/examples/stm32h7/.cargo/config b/examples/stm32h7/.cargo/config deleted file mode 100644 index 4106112cd..000000000 --- a/examples/stm32h7/.cargo/config +++ /dev/null @@ -1,5 +0,0 @@ -[target.thumbv7em-none-eabihf] -runner = 'probe-run --chip STM32H743ZITx' - -[build] -target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU) diff --git a/examples/stm32h7/.cargo/config.toml b/examples/stm32h7/.cargo/config.toml new file mode 100644 index 000000000..d38be23e0 --- /dev/null +++ b/examples/stm32h7/.cargo/config.toml @@ -0,0 +1,8 @@ +[target.thumbv7em-none-eabihf] +runner = 'probe-run --chip STM32H743ZITx' + +[build] +target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU) + +[env] +DEFMT_LOG = "trace" -- cgit