1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/dwm1001: use lis2dh12_i2c instead of lis2dh12_spi

This commit is contained in:
Gregory Holder 2022-11-09 09:36:09 +00:00 committed by GitHub
parent c354ab6285
commit dde641fded
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ config BOARD_DWM1001
select HAS_PERIPH_UART
select HAS_VDD_LC_FILTER_REG1
select HAVE_LIS2DH12_SPI
select HAVE_LIS2DH12_I2C
select HAVE_SAUL_GPIO
source "$(RIOTBOARD)/common/nrf52/Kconfig"

View File

@ -1,5 +1,5 @@
ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += lis2dh12_spi
USEMODULE += lis2dh12_i2c
USEMODULE += saul_gpio
endif