From e391c1bc244838bb050ade946e709f671cd9cf94 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 18 Oct 2019 10:38:48 +0200 Subject: Add preliminary version of HDC1080 driver (not working reliably yet) --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5e0f2bc..0a33696 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,11 @@ ifneq ($(findstring max44009,${drivers}), ) COMMON_FLAGS += -DDRIVER_MAX44009 endif +ifneq ($(findstring hdc1080,${drivers}), ) + CXX_TARGETS += src/driver/hdc1080.cc + COMMON_FLAGS += -DDRIVER_HDC1080 +endif + ifneq ($(findstring mmsimple,${drivers}), ) CXX_TARGETS += src/driver/mmsimple.cc COMMON_FLAGS += -DDRIVER_MMSIMPLE -- cgit v1.2.3