summaryrefslogtreecommitdiff
path: root/tests/awd-timer-dma/Makefile.stm32l1-generic
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2017-06-23 23:09:07 +0000
committerKarl Palsson <karlp@tweak.net.au>2017-09-01 21:20:39 +0000
commitb3750541774c486fdabe504434fefe1de469dba4 (patch)
tree41a66247cc12008e3d4a5c06827c99278de5790c /tests/awd-timer-dma/Makefile.stm32l1-generic
parent76f86f8b2c1b4b803642a30a5f94d589410fe1c2 (diff)
downloadolsndot-b3750541774c486fdabe504434fefe1de469dba4.tar.gz
olsndot-b3750541774c486fdabe504434fefe1de469dba4.tar.bz2
olsndot-b3750541774c486fdabe504434fefe1de469dba4.zip
awd-timer-dma: initial commit.
Had to figure out a few screwups before I got the AWD working properly.
Diffstat (limited to 'tests/awd-timer-dma/Makefile.stm32l1-generic')
-rw-r--r--tests/awd-timer-dma/Makefile.stm32l1-generic18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/awd-timer-dma/Makefile.stm32l1-generic b/tests/awd-timer-dma/Makefile.stm32l1-generic
new file mode 100644
index 0000000..1ccdd67
--- /dev/null
+++ b/tests/awd-timer-dma/Makefile.stm32l1-generic
@@ -0,0 +1,18 @@
+BOARD = stm32l1-generic
+PROJECT = awd-timer-dma-$(BOARD)
+BUILD_DIR = bin-$(BOARD)
+
+SHARED_DIR = ../../shared
+
+CFILES = main-$(BOARD).c
+CFILES += awd-timer-dma.c
+CFILES += trace.c trace_stdio.c
+
+VPATH += $(SHARED_DIR)
+
+INCLUDES += $(patsubst %,-I%, . $(SHARED_DIR))
+
+OPENCM3_DIR=../../libopencm3
+DEVICE=stm32l151xb
+OOCD_FILE = openocd.stm32l1-generic.cfg
+include ../../rules.mk