blob: 204a56b1c06ea9a2d44a1bd1406fbe3ad1c076e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# replace MSPM0C1104 with your chip as listed in `probe-rs chip list`
runner = "probe-rs run --chip MSPM0C1104 --protocol=swd"
[build]
target = "thumbv6m-none-eabi"
[env]
DEFMT_LOG = "debug"
# defmt's buffer needs to be shrunk since the MSPM0C1104 only has 1KB of ram.
DEFMT_RTT_BUFFER_SIZE = "72"
|