mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
338 B
Makefile
16 lines
338 B
Makefile
include ../Makefile.tests_common
|
|
|
|
# define the driver to be used for selected boards
|
|
ifneq (,$(filter stm32f429i-disc1 stm32f429i-disco stm32f3discovery,$(BOARD)))
|
|
DRIVER := i3g4250d
|
|
endif
|
|
|
|
DRIVER ?= l3gd20h
|
|
|
|
USEMODULE += $(DRIVER)
|
|
USEMODULE += l3gxxxx
|
|
USEMODULE += ztimer
|
|
USEMODULE += ztimer_msec
|
|
|
|
include $(RIOTBASE)/Makefile.include
|