20 lines
471 B
TOML
20 lines
471 B
TOML
[target.thumbv7em-none-eabihf]
|
|
runner = 'probe-rs run --chip nRF52840_xxAA'
|
|
rustflags = [
|
|
"-C", "target-feature=+vfp4d16sp", # Tells the compiler to use the FPU
|
|
]
|
|
|
|
#[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
#runner = "probe-rs run --no-location --chip nRF52840_xxAA"
|
|
|
|
[build]
|
|
target = "thumbv7em-none-eabihf"
|
|
#target = "thumbv7em-none-eabi"
|
|
|
|
[env]
|
|
DEFMT_LOG = "trace"
|
|
|
|
[unstable]
|
|
build-std = ["core"]
|
|
build-std-features = ["panic_immediate_abort"]
|