aboutsummaryrefslogtreecommitdiffstats
path: root/sw/demo1/Makefile
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-04-10 21:47:17 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-04-10 21:47:17 +0200
commitd547c5c5c9834dbb1dbe000b42e09b22f064f947 (patch)
tree13e7c20a839e6ded8267926c27a067e5c0c39d8e /sw/demo1/Makefile
parent3b543dcfac08aeea9891aa7e279db5fe33b9099b (diff)
downloadpicardy-d547c5c5c9834dbb1dbe000b42e09b22f064f947.tar.gz
picardy-d547c5c5c9834dbb1dbe000b42e09b22f064f947.tar.bz2
picardy-d547c5c5c9834dbb1dbe000b42e09b22f064f947.zip
Add demo1 stm32f103 example with blinky code
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