11 lines
395 B
Makefile
11 lines
395 B
Makefile
# 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
|