mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests: add Kconfig configuration files for multiple driver tests
Configurations for the following applications have been added: l3g4200d lc709203f lis2dh12 lis3dh lis3mdl lpd8808 lpsxxx lsm303dlhc lsm6dsl ltc4150 mag3110 mhz19 mma7660 mma8x5x motor_driver mpl3115a2 mpu9x50 mq3 nvram_spi mtd_flashpage mtd_mapper
This commit is contained in:
parent
d8cf1c9440
commit
20c5552920
8
.murdock
8
.murdock
@ -16,8 +16,12 @@ tests/driver_b* tests/driver_ccs811 tests/driver_ccs811_full tests/driver_dcf77
|
||||
tests/driver_dfplayer tests/driver_dht tests/driver_ds18 tests/driver_ds75lx
|
||||
tests/driver_ds1307 tests/driver_ds3231 tests/driver_ds3234 tests/driver_dsp0401
|
||||
tests/driver_dynamixel tests/driver_edbg_eui tests/driver_f* tests/driver_g*
|
||||
tests/driver_h* tests/driver_i* tests/driver_j* tests/driver_my9221
|
||||
tests/driver_o* tests/driver_p* tests/driver_q* tests/driver_r*"}
|
||||
tests/driver_h* tests/driver_i* tests/driver_j* tests/driver_l*
|
||||
tests/driver_mag3110 tests/driver_mhz19 tests/driver_mma7660
|
||||
tests/driver_motor_driver tests/driver_mpl3115a2 tests/driver_mpu9x50
|
||||
tests/driver_mq3 tests/driver_my9221 tests/driver_nvram_spi tests/mtd_flashpage
|
||||
tests/mtd_mapper tests/driver_o* tests/driver_p* tests/driver_q*
|
||||
tests/driver_r*"}
|
||||
: ${TEST_KCONFIG_native:="examples/hello-world tests/periph_*"}
|
||||
|
||||
export RIOT_CI_BUILD=1
|
||||
|
4
tests/driver_l3g4200d/app.config.test
Normal file
4
tests/driver_l3g4200d/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_L3G4200D=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lc709203f/app.config.test
Normal file
4
tests/driver_lc709203f/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LC709203F=y
|
||||
CONFIG_MODULE_XTIMER=y
|
9
tests/driver_lis2dh12/app.config.test
Normal file
9
tests/driver_lis2dh12/app.config.test
Normal file
@ -0,0 +1,9 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_FMT=y
|
||||
CONFIG_MODULE_XTIMER=y
|
||||
CONFIG_MODULE_LIS2DH12=y
|
||||
CONFIG_MODULE_LIS2DH12_SPI=y
|
||||
|
||||
# for using lis2dh12 with interrupt function
|
||||
CONFIG_MODULE_LIS2DH12_INT=y
|
5
tests/driver_lis3dh/app.config.test
Normal file
5
tests/driver_lis3dh/app.config.test
Normal file
@ -0,0 +1,5 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_PERIPH_GPIO_IRQ=y
|
||||
CONFIG_MODULE_LIS3DH=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lis3mdl/app.config.test
Normal file
4
tests/driver_lis3mdl/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LIS3MDL=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lpd8808/app.config.test
Normal file
4
tests/driver_lpd8808/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LPD8808=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lpsxxx/app.config.test
Normal file
4
tests/driver_lpsxxx/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LPS331AP=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lsm303dlhc/app.config.test
Normal file
4
tests/driver_lsm303dlhc/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LSM303DLHC=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_lsm6dsl/app.config.test
Normal file
4
tests/driver_lsm6dsl/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_LSM6DSL=y
|
||||
CONFIG_MODULE_XTIMER=y
|
5
tests/driver_ltc4150/app.config.test
Normal file
5
tests/driver_ltc4150/app.config.test
Normal file
@ -0,0 +1,5 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_FMT=y
|
||||
CONFIG_MODULE_FMT_TABLE=y
|
||||
CONFIG_MODULE_LTC4150=y
|
4
tests/driver_mag3110/app.config.test
Normal file
4
tests/driver_mag3110/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MAG3110=y
|
||||
CONFIG_MODULE_XTIMER=y
|
7
tests/driver_mhz19/app.config.test
Normal file
7
tests/driver_mhz19/app.config.test
Normal file
@ -0,0 +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_XTIMER=y
|
||||
|
||||
# Use UART mode by default
|
||||
CONFIG_MODULE_MHZ19_UART=y
|
||||
#CONFIG_MODULE_MHZ19_PWM=y
|
4
tests/driver_mma7660/app.config.test
Normal file
4
tests/driver_mma7660/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MMA7660=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_mma8x5x/app.config.test
Normal file
4
tests/driver_mma8x5x/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MMA8X5X=y
|
||||
CONFIG_MODULE_XTIMER=y
|
7
tests/driver_motor_driver/app.config.test
Normal file
7
tests/driver_motor_driver/app.config.test
Normal file
@ -0,0 +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_MOTOR_DRIVER=y
|
||||
CONFIG_MODULE_SHELL=y
|
||||
CONFIG_MODULE_SHELL_COMMANDS=y
|
||||
CONFIG_MODULE_XTIMER=y
|
||||
CONFIG_MODULE_PERIPH_QDEC=y
|
4
tests/driver_mpl3115a2/app.config.test
Normal file
4
tests/driver_mpl3115a2/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MPL3115A2=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_mpu9x50/app.config.test
Normal file
4
tests/driver_mpu9x50/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MPU9150=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_mq3/app.config.test
Normal file
4
tests/driver_mq3/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_MQ3=y
|
||||
CONFIG_MODULE_XTIMER=y
|
4
tests/driver_nvram_spi/app.config.test
Normal file
4
tests/driver_nvram_spi/app.config.test
Normal file
@ -0,0 +1,4 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_NVRAM_SPI=y
|
||||
CONFIG_MODULE_XTIMER=y
|
5
tests/mtd_flashpage/app.config.test
Normal file
5
tests/mtd_flashpage/app.config.test
Normal file
@ -0,0 +1,5 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_TEST_UTILS_INTERACTIVE_SYNC=y
|
||||
CONFIG_MODULE_MTD_FLASHPAGE=y
|
||||
CONFIG_MODULE_EMBUNIT=y
|
5
tests/mtd_mapper/app.config.test
Normal file
5
tests/mtd_mapper/app.config.test
Normal file
@ -0,0 +1,5 @@
|
||||
# this file enables modules defined in Kconfig. Do not use this file for
|
||||
# application configuration. This is only needed during migration.
|
||||
CONFIG_MODULE_TEST_UTILS_INTERACTIVE_SYNC=y
|
||||
CONFIG_MODULE_MTD_MAPPER=y
|
||||
CONFIG_MODULE_EMBUNIT=y
|
Loading…
Reference in New Issue
Block a user