diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-10-18 10:38:48 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-10-18 10:38:48 +0200 |
commit | e391c1bc244838bb050ade946e709f671cd9cf94 (patch) | |
tree | f3b5e0260f95f886f54be213098f3362b7f8c815 /Makefile | |
parent | 8e0cde61737f46ba492768d86c54cff998da07a1 (diff) |
Add preliminary version of HDC1080 driver (not working reliably yet)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |