From 21ed297adc50fd404e78a31b1d8ef326d4b20b4b Mon Sep 17 00:00:00 2001 From: SPRESENSE <41312067+SPRESENSE@users.noreply.github.com> Date: Wed, 19 May 2021 17:48:36 +0900 Subject: [PATCH] boards: cxd56xx: Fix configuration to compile bmp280 sensor Fix the configuration name to compile cxd56_bmp280_i2c.c. --- boards/arm/cxd56xx/common/src/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arm/cxd56xx/common/src/Make.defs b/boards/arm/cxd56xx/common/src/Make.defs index 0895c22480..239b84432a 100644 --- a/boards/arm/cxd56xx/common/src/Make.defs +++ b/boards/arm/cxd56xx/common/src/Make.defs @@ -88,7 +88,7 @@ ifeq ($(CONFIG_SENSORS_BMI160_SPI),y) CSRCS += cxd56_bmi160_spi.c endif -ifeq ($(CONFIG_SENSORS_BMP280_I2C),y) +ifeq ($(CONFIG_SENSORS_BMP280),y) CSRCS += cxd56_bmp280_i2c.c endif