2afff617f6
* Add FlashProvider and FlashConfig traits to define flash characteristics * Use traits in bootloader to retrieve flash handles and for copying data between flash instances * Add convenience implementations for using a single flash instance.
17 lines
393 B
TOML
17 lines
393 B
TOML
[unstable]
|
|
build-std = ["core"]
|
|
build-std-features = ["panic_immediate_abort"]
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
#runner = "./fruitrunner"
|
|
runner = "probe-run --chip nrf52840_xxAA"
|
|
|
|
rustflags = [
|
|
# Code-size optimizations.
|
|
"-Z", "trap-unreachable=no",
|
|
#"-C", "no-vectorize-loops",
|
|
"-C", "force-frame-pointers=yes",
|
|
]
|
|
|
|
[build]
|
|
target = "thumbv7em-none-eabi"
|