diff options
| author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-10-16 19:33:17 +0100 | 
|---|---|---|
| committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-10-16 19:33:17 +0100 | 
| commit | cdf2a5026e45ac2b65001ed41cc67d86590a681a (patch) | |
| tree | 56fda9ee1cc0159e725952802547e5e6d327428e /.cargo/config.toml | |
| download | scale-drv-example-cdf2a5026e45ac2b65001ed41cc67d86590a681a.tar.gz scale-drv-example-cdf2a5026e45ac2b65001ed41cc67d86590a681a.tar.xz scale-drv-example-cdf2a5026e45ac2b65001ed41cc67d86590a681a.zip | |
Diffstat (limited to '.cargo/config.toml')
| -rw-r--r-- | .cargo/config.toml | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..0dc2b8f --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,13 @@ +[target.thumbv7em-none-eabihf] +runner = "probe-rs run --chip STM32F411CEUx" +linker = "flip-link" +rustflags = [ +    "-C", "link-arg=-Tlink.x", +    "-C", "link-arg=-Tdefmt.x", +] + +[build] +target = "thumbv7em-none-eabihf" + +[env] +DEFMT_LOG = "trace" | 
