You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2021/05/23 18:43:10 UTC

[incubator-nuttx] 05/07: boards: cxd56xx: Fix configuration to compile bmp280 sensor

This is an automated email from the ASF dual-hosted git repository.

jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 21ed297adc50fd404e78a31b1d8ef326d4b20b4b
Author: SPRESENSE <41...@users.noreply.github.com>
AuthorDate: Wed May 19 17:48:36 2021 +0900

    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 0895c22..239b844 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