From 576cf74ac87575fd48793576cb140d3f342870cc Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Fri, 5 May 2023 09:20:43 +0200 Subject: [PATCH] tests/drivers/l3gxxxx: fix used sensor version for iotlab boards --- tests/drivers/l3gxxxx/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/drivers/l3gxxxx/Makefile b/tests/drivers/l3gxxxx/Makefile index 63d3161a1c..2f2d5f3aa3 100644 --- a/tests/drivers/l3gxxxx/Makefile +++ b/tests/drivers/l3gxxxx/Makefile @@ -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)