zephyr/drivers/sensor/tmp112/Kconfig
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

46 lines
992 B
Plaintext

# Kconfig - TMP112 temperature sensor configuration options
#
# Copyright (c) 2016 Firmwave
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig TMP112
bool
prompt "TMP112 Temperature Sensor"
depends on SENSOR && I2C
default n
help
Enable driver for TMP112 infrared thermopile sensors.
config TMP112_NAME
string
prompt "Driver name"
default "TMP112"
depends on TMP112
help
Device name with which the TMP112 sensor is identified.
config TMP112_I2C_ADDR
hex "I2C address for TMP112"
depends on TMP112
default 0x48
help
I2C address of the TMP112 sensor.
0x48: A0 connected GND and A1 connected to GND.
0x49: A0 connected VDD and A1 connected to GND.
0x4A: A0 connected SDA and A1 connected to GND.
0x4B: A0 connected SCL and A1 connected to GND.
config TMP112_I2C_MASTER_DEV_NAME
string
prompt "I2C master where TMP112 is connected"
depends on TMP112
default "I2C_0"
help
Specify the device name of the I2C master device to which the
TMP112 chip is connected.