mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
drivers/lis2dh12: add module to Kconfig
This commit is contained in:
parent
5d487d60b7
commit
ffc7764ef9
@ -79,6 +79,7 @@ rsource "itg320x/Kconfig"
|
||||
rsource "jc42/Kconfig"
|
||||
rsource "l3g4200d/Kconfig"
|
||||
rsource "lc709203f/Kconfig"
|
||||
rsource "lis2dh12/Kconfig"
|
||||
rsource "lpsxxx/Kconfig"
|
||||
rsource "mag3110/Kconfig"
|
||||
rsource "mma8x5x/Kconfig"
|
||||
|
36
drivers/lis2dh12/Kconfig
Normal file
36
drivers/lis2dh12/Kconfig
Normal file
@ -0,0 +1,36 @@
|
||||
# Copyright (c) 2020 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
menuconfig MODULE_LIS2DH12
|
||||
bool "LIS2DH12 Accelerometer"
|
||||
depends on TEST_KCONFIG
|
||||
|
||||
if MODULE_LIS2DH12
|
||||
|
||||
choice
|
||||
bool "Device interface"
|
||||
|
||||
config MODULE_LIS2DH12_I2C
|
||||
bool "I2C"
|
||||
depends on HAS_PERIPH_I2C
|
||||
select MODULE_PERIPH_I2C
|
||||
|
||||
config MODULE_LIS2DH12_SPI
|
||||
bool "SPI"
|
||||
depends on HAS_PERIPH_GPIO
|
||||
depends on HAS_PERIPH_SPI
|
||||
select MODULE_PERIPH_SPI
|
||||
select MODULE_PERIPH_GPIO
|
||||
|
||||
endchoice # Device interface
|
||||
|
||||
config MODULE_LIS2DH12_INT
|
||||
bool "Interrupt lines support"
|
||||
depends on HAS_PERIPH_GPIO_IRQ
|
||||
select MODULE_PERIPH_GPIO_IRQ
|
||||
|
||||
endif # MODULE_LIS2DH12
|
Loading…
Reference in New Issue
Block a user