aboutsummaryrefslogtreecommitdiffstats
path: root/sw/demo1/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sw/demo1/Makefile')
-rw-r--r--sw/demo1/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/sw/demo1/Makefile b/sw/demo1/Makefile
new file mode 100644
index 0000000..1dcb47c
--- /dev/null
+++ b/sw/demo1/Makefile
@@ -0,0 +1,18 @@
+.PHONY: all openocd debug
+
+OPENOCD := openocd
+OPENOCD_CFG := /usr/share/openocd/scripts/target/stm32f1x.cfg
+BIN := target/thumbv7em-none-eabihf/release/demo1
+
+# Build and flash in release mode
+all:
+ cargo build --release
+ $(OPENOCD) -f $(OPENOCD_CFG) -c "program $(BIN) reset exit"
+
+# Start a openocd session.
+openocd:
+ $(OPENOCD) -f $(OPENOCD_CFG)
+
+# Start a gdb session. Works if a valid openocd session is existing.
+debug:
+ arm-none-eabi-gdb $(BIN) -q -x utils/debug.gdb