27 lines
563 B
TOML
Executable file
27 lines
563 B
TOML
Executable file
[target.thumbv6m-none-eabi]
|
|
runner = 'probe-rs run --chip STM32L053R8'
|
|
|
|
[build]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[run]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[check]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[clippy]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[test]
|
|
|
|
[alias]
|
|
arun = "run --target thumbv6m-none-eabi"
|
|
abuild = "build --target thumbv6m-none-eabi"
|
|
atest = "test --target x86_64-unknown-linux-gnu"
|
|
acheck = "check --target thumbv6m-none-eabi"
|
|
aclippy = "clippy --target thumbv6m-none-eabi"
|
|
cflash = "flash --chip STM32L053R8"
|
|
|
|
[env]
|
|
DEFMT_LOG = "trace" # sets the log level to trace
|