mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge #19550
19550: tests/drivers/l3gxxxx: fix used sensor version for iotlab boards r=aabadie a=gschorcht ### Contribution description This PR fixes the `l3gxxxx` driver version used in `tests/drivers/l3gxxxx` for IoT-Lab boards. It hopefully fixes the compilation of nightly. The problem occurred with PR #19523. ### Testing procedure ``` BOARD=iotlab-a8-m3 make -j8 -C tests/drivers/l3gxxxx info-modules | grep l3g4200d_ng ``` should succeed. ### Issues/PRs references Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
This commit is contained in:
commit
bf95fa4909
@ -5,6 +5,10 @@ ifneq (,$(filter stm32f429i-disc1 stm32f429i-disco stm32f3discovery,$(BOARD)))
|
||||
DRIVER := i3g4250d
|
||||
endif
|
||||
|
||||
ifneq (,$(filter iotlab-m3 iotlab-a8-m3,$(BOARD)))
|
||||
DRIVER := l3g4200d_ng
|
||||
endif
|
||||
|
||||
DRIVER ?= l3gd20h
|
||||
|
||||
USEMODULE += $(DRIVER)
|
||||
|
Loading…
Reference in New Issue
Block a user