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

tests/periph_i2c: include I2C scanner per default

This commit is contained in:
Hauke Petersen 2021-01-08 10:52:18 +01:00
parent 5d9e9fb9d7
commit fe15192200
3 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,8 @@ FEATURES_REQUIRED = periph_i2c
FEATURES_OPTIONAL = periph_i2c_reconfigure
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += i2c_scan
USEMODULE += xtimer
# avoid running Kconfig by default

View File

@ -5,4 +5,5 @@ BOARD_INSUFFICIENT_MEMORY := \
arduino-uno \
atmega328p \
nucleo-l011k4 \
samd10-xmini \
#

View File

@ -1,5 +1,7 @@
# this file enables modules defined in Kconfig. Do not use this file for
# application configuration. This is only needed during migration.
CONFIG_MODULE_I2C_SCAN=y
CONFIG_MODULE_PERIPH_I2C=y
CONFIG_MODULE_SHELL=y
CONFIG_MODULE_SHELL_COMMANDS=y
CONFIG_MODULE_XTIMER=y