This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit e26dfec157dbfe80ff45574076520d5ea3db7feb Author: raiden00pl <[email protected]> AuthorDate: Fri Sep 8 09:58:39 2023 +0200 cmake: add support for sensors/bmi270 --- drivers/sensors/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/sensors/CMakeLists.txt b/drivers/sensors/CMakeLists.txt index fdf86db521..0ff0c89e69 100644 --- a/drivers/sensors/CMakeLists.txt +++ b/drivers/sensors/CMakeLists.txt @@ -49,6 +49,10 @@ if(CONFIG_SENSORS) list(APPEND SRCS dhtxx.c) endif() + if(CONFIG_SENSORS_BMI270) + list(APPEND SRCS bmi270.c) + endif() + # These drivers depend on I2C support if(CONFIG_I2C)
