diff options
Diffstat (limited to 'sw/deps/hd44780-driver/examples/stm32f30x/.cargo/config')
-rw-r--r-- | sw/deps/hd44780-driver/examples/stm32f30x/.cargo/config | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sw/deps/hd44780-driver/examples/stm32f30x/.cargo/config b/sw/deps/hd44780-driver/examples/stm32f30x/.cargo/config new file mode 100644 index 0000000..ac7edbb --- /dev/null +++ b/sw/deps/hd44780-driver/examples/stm32f30x/.cargo/config @@ -0,0 +1,9 @@ +[target.'cfg(all(target_arch = "arm", target_os = "none"))'] +runner = "arm-none-eabi-gdb -q -x openocd.gdb" + +rustflags = [ + "-C", "link-arg=-Tlink.x", +] + +[build] +target = "thumbv7em-none-eabihf" |