From 11517648d32bc8213c38a987ec389f40feb5748e Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 25 Oct 2019 11:27:34 +0200 Subject: Add BME280 driver --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2e42e6e..15e83c6 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,11 @@ ifneq ($(findstring am2320,${drivers}), ) COMMON_FLAGS += -DDRIVER_AM2320 endif +ifneq ($(findstring bme280,${drivers}), ) + CXX_TARGETS += src/driver/bme280.cc src/driver/bme680_util.cc + COMMON_FLAGS += -DDRIVER_BME280 +endif + ifneq ($(findstring bme680,${drivers}), ) CXX_TARGETS += src/driver/bme680.cc src/driver/bme680_util.cc COMMON_FLAGS += -DDRIVER_BME680 -- cgit v1.2.3