summaryrefslogtreecommitdiff
path: root/src/app/bme680-max44009-logger
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-12-31 15:30:52 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-12-31 15:30:52 +0100
commit44c73e7330aaa7d1411a8fd48b85d1b95bdc2b6b (patch)
tree84d3efb8c107ac9410af3602e3035f8e4125b62d /src/app/bme680-max44009-logger
parentd3e2b724b4f924b9839f2896db4455c2564cf29d (diff)
Use CONFIG_meta_driver_hardware_i2c instead of MULTIPASS_ARCH_HAS_I2C
Diffstat (limited to 'src/app/bme680-max44009-logger')
-rw-r--r--src/app/bme680-max44009-logger/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/bme680-max44009-logger/main.cc b/src/app/bme680-max44009-logger/main.cc
index ac742d8..3634d30 100644
--- a/src/app/bme680-max44009-logger/main.cc
+++ b/src/app/bme680-max44009-logger/main.cc
@@ -6,7 +6,7 @@
#include "arch.h"
#include "driver/gpio.h"
#include "driver/stdout.h"
-#if defined(MULTIPASS_ARCH_HAS_I2C) && !defined(CONFIG_driver_softi2c)
+#if defined(CONFIG_meta_driver_hardware_i2c)
#include "driver/i2c.h"
#else
#include "driver/soft_i2c.h"