aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/layer-by-layer/.cargo/config.toml
blob: f30d9e4466cdbb05644154f59f03318c0bf8e068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# replace your chip as listed in `probe-rs chip list`
runner = "probe-rs run --chip STM32L475VG"

rustflags = [
    "-C", "link-arg=--nmagic",
    "-C", "link-arg=-Tlink.x",
    "-C", "link-arg=-Tdefmt.x",
]

[build]
target = "thumbv7em-none-eabihf"

[env]
DEFMT_LOG = "trace"