1
0
Fork 0
forked from nuttx/nuttx-update

cmake: add support for sensors/bmi270

This commit is contained in:
raiden00pl 2023-09-08 09:58:39 +02:00 committed by Xiang Xiao
parent e83fd87f9c
commit e26dfec157

View file

@ -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)