From b3750541774c486fdabe504434fefe1de469dba4 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Fri, 23 Jun 2017 23:09:07 +0000 Subject: awd-timer-dma: initial commit. Had to figure out a few screwups before I got the AWD working properly. --- tests/awd-timer-dma/Makefile.stm32l1-generic | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/awd-timer-dma/Makefile.stm32l1-generic (limited to 'tests/awd-timer-dma/Makefile.stm32l1-generic') 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 -- cgit