forked from goliothlabs/golioth-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
28 lines (24 loc) · 836 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "probe-rs run --chip nRF9160_xxAA"
# These are implemented in build.rs, but can be implemented here as well
#rustflags = [
# "-C", "linker=flip-link",
# "-C", "link-arg=-Tlink.x",
# "-C", "link-arg=-Tdefmt.x",
## This is needed if your flash or ram addresses are not aligned to 0x10000 in memory.x
## See https://github.com/rust-embedded/cortex-m-quickstart/pull/95
# "-C", "link-arg=--nmagic",
#]
[env]
# `cargo clean -p defmt` after you change this
DEFMT_LOG = "debug"
MODEM_TRACE_LEVEL = "ip-lte"
[build]
target = "thumbv8m.main-none-eabihf" # Cortex-M33 (with FPU)
[alias]
bb = "build --bin"
brb = "build --release --bin"
rb = "run --bin"
rrb = "run --release --bin"
s = "size --bin at_client -- -B -x"
sr = "size --release --bin at_client -- -B -x"