This sets up the basic build for the microbit project. The documentation needed to code against it has been assembled in the documents directory.
13 lines
324 B
TOML
13 lines
324 B
TOML
[build]
|
|
target = "thumbv7em-none-eabihf"
|
|
|
|
[target.thumbv7em-none-eabihf]
|
|
rustflags = ["-C", "link-arg=-Tlink.x",
|
|
"-C", "link-arg=-Tdefmt.x"]
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
runner = ["probe-rs", "run", "--chip", "nRF52833", "--log-format", "{t} {L} {s}"]
|
|
|
|
[env]
|
|
DEFMT_LOG = "info"
|