From 7a540fb4ab547fcb6bc6b56057ab8968fab12390 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Wed, 22 Mar 2017 22:50:37 +0000 Subject: f0 working with repeated start properly. need to squish lots of this like, you left the f0 makefiles out earlier, and it's all boring history anwyay --- tests/i2c-master/Makefile.stm32f072-disco | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/i2c-master/Makefile.stm32f072-disco (limited to 'tests/i2c-master/Makefile.stm32f072-disco') diff --git a/tests/i2c-master/Makefile.stm32f072-disco b/tests/i2c-master/Makefile.stm32f072-disco new file mode 100644 index 0000000..02e987c --- /dev/null +++ b/tests/i2c-master/Makefile.stm32f072-disco @@ -0,0 +1,23 @@ +BOARD = stm32f072-disco +PROJECT = i2c-master-$(BOARD) +BUILD_DIR = bin-$(BOARD) + +SHARED_DIR = ../../shared + +CFILES = main-$(BOARD).c +CFILES += i2c-master.c +# No trace on cm0! +#CFILES += trace.c trace_stdio.c +CFILES += usart_stdio.c + +VPATH += $(SHARED_DIR) + +INCLUDES += $(patsubst %,-I%, . $(SHARED_DIR)) + +OPENCM3_DIR=../../libopencm3 +DEVICE=stm32f072rb +#OOCD_INTERFACE = stlink-v2 +#OOCD_TARGET = stm32f0x +OOCD_FILE = ../../openocd/openocd.stm32f072-disco.cfg + +include ../../rules.mk -- cgit