From fd1aabd0417bef53e7ff54df52eba80be5494d56 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 12 Oct 2018 10:44:11 +0200 Subject: half-baked timer implementation for MSP430 and Arduino --- src/arch/msp430fr5969lp/Makefile.inc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch/msp430fr5969lp/Makefile.inc') diff --git a/src/arch/msp430fr5969lp/Makefile.inc b/src/arch/msp430fr5969lp/Makefile.inc index 28c1cef..037c9cd 100644 --- a/src/arch/msp430fr5969lp/Makefile.inc +++ b/src/arch/msp430fr5969lp/Makefile.inc @@ -43,6 +43,10 @@ ifneq ($(findstring spi_b,${arch_drivers}), ) TARGETS += src/arch/msp430fr5969lp/driver/spi_b.cc endif +ifneq ($(findstring timer,${arch_drivers}), ) + TARGETS += src/arch/msp430fr5969lp/driver/timer.cc +endif + OBJECTS = ${TARGETS:.cc=.o} .cc.o: -- cgit v1.2.3