55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
# Kconfig - MAX44009 light sensor configuration options
|
|
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
menuconfig MAX44009
|
|
bool
|
|
prompt "MAX44009 Light Sensor"
|
|
depends on SENSOR && I2C
|
|
default n
|
|
help
|
|
Enable driver for MAX44009 light sensors.
|
|
|
|
config MAX44009_DRV_NAME
|
|
string
|
|
prompt "Driver name"
|
|
default "MAX44009"
|
|
depends on MAX44009
|
|
help
|
|
Device name with which the MAX44009 light is identified.
|
|
|
|
|
|
config MAX44009_I2C_ADDR
|
|
hex
|
|
prompt "MAX44009 I2C address"
|
|
depends on MAX44009
|
|
default "0x4a"
|
|
help
|
|
I2C address of the MAX44009 sensor. Possible configurations:
|
|
|
|
0x4a: A0 connected to GND.
|
|
0x4b: A0 connected to VCC.
|
|
|
|
config MAX44009_I2C_DEV_NAME
|
|
string
|
|
prompt "I2C master where MAX44009 is connected"
|
|
depends on MAX44009
|
|
default "I2C_0"
|
|
help
|
|
Specify the device name of the I2C master device to which the
|
|
MAX44009 chip is connected.
|