You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
395 B
11 lines
395 B
# Can't have both mpu and st sensor hal.
|
|
ifeq ($(BOARD_SENSOR_MPU_PAD),true)
|
|
include $(call all-named-subdir-makefiles,mpu_vr)
|
|
else ifeq ($(BOARD_SENSOR_MPU_VR),true)
|
|
include $(call all-named-subdir-makefiles,mpu_vr)
|
|
else ifeq ($(BOARD_SENSOR_ST),true)
|
|
include $(call all-named-subdir-makefiles,st)
|
|
else ifeq ($(BOARD_SENSOR_ST_IIO),true)
|
|
include $(call all-named-subdir-makefiles,st_iio)
|
|
endif
|