mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 04:21:56 +00:00
Consistently use config FOO bool/int/hex/string "Prompt text" instead of config FOO bool/int/hex/string prompt "Prompt text" (...and a bunch of other variations that e.g. swapped the order of the type and the 'prompt', or put other properties between them). The shorthand is fully equivalent to using 'prompt'. It saves lines and avoids tricking people into thinking there is some semantic difference. Most of the grunt work was done by a modified version of https://unix.stackexchange.com/questions/26284/ how-can-i-use-sed-to-replace-a-multi-line-string/26290#26290, but some of the rarer variations had to be converted manually. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
# Kconfig - DHT Temperature and Himidity Sensor configuration options
|
|
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DHT
|
|
bool "DHT Temperature and Humidity Sensor"
|
|
depends on GPIO
|
|
help
|
|
Enable driver for the DHT temperature and humidity sensor family.
|
|
|
|
choice
|
|
prompt "Chip type"
|
|
depends on DHT
|
|
default DHT_CHIP_DHT11
|
|
help
|
|
Choose desired chip type from the DHT family.
|
|
|
|
config DHT_CHIP_DHT11
|
|
bool "DHT11"
|
|
help
|
|
Choose this option to enable the DHT11 chip.
|
|
|
|
config DHT_CHIP_DHT22
|
|
bool "DHT22"
|
|
help
|
|
Choose this option to enable the DHT22 chip.
|
|
|
|
endchoice
|
|
|
|
config DHT_NAME
|
|
string "Driver name"
|
|
default "DHT11" if DHT_CHIP_DHT11
|
|
default "DHT22" if DHT_CHIP_DHT22
|
|
depends on DHT
|
|
help
|
|
Device name with which the sensor is identified.
|
|
|
|
config DHT_GPIO_DEV_NAME
|
|
string "GPIO device"
|
|
default "GPIO_0"
|
|
depends on DHT
|
|
help
|
|
The device name of the GPIO device to which the chip's data pin
|
|
is connected.
|
|
|
|
config DHT_GPIO_PIN_NUM
|
|
int "Interrupt GPIO pin number"
|
|
default 0
|
|
depends on DHT
|
|
help
|
|
The number of the GPIO on which the chip's data pin is connected.
|