2016-01-26 00:21:51 +08:00
|
|
|
# Kconfig - 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 SENSOR
|
|
|
|
bool
|
|
|
|
prompt "Sensor Drivers"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Include sensor drivers in system config
|
|
|
|
|
|
|
|
config SENSOR_DELAYED_WORK
|
|
|
|
depends on SENSOR
|
|
|
|
bool
|
|
|
|
|
|
|
|
config SENSOR_DELAYED_WORK_STACK_SIZE
|
|
|
|
int "Sensor delayed work fiber stack size"
|
|
|
|
depends on SENSOR && SENSOR_DELAYED_WORK
|
|
|
|
default 1024
|
|
|
|
|
|
|
|
config SENSOR_DELAYED_WORK_PRIORITY
|
|
|
|
int "Sensor delayed work fiber priority"
|
|
|
|
depends on SENSOR && SENSOR_DELAYED_WORK
|
|
|
|
default 10
|
|
|
|
|
|
|
|
config SENSOR_DEBUG
|
|
|
|
bool "Enable sensor debug output"
|
|
|
|
default n
|
|
|
|
depends on SENSOR && PRINTK
|
|
|
|
help
|
|
|
|
This option enables debug output for sensor drivers.
|
2016-02-23 23:21:38 +08:00
|
|
|
|
2016-02-18 23:40:55 +08:00
|
|
|
source "drivers/sensor/Kconfig.bma280"
|
|
|
|
|
2016-02-29 21:12:20 +08:00
|
|
|
source "drivers/sensor/Kconfig.bmc150_magn"
|
|
|
|
|
2016-03-31 20:05:03 +08:00
|
|
|
source "drivers/sensor/Kconfig.bmi160"
|
|
|
|
|
2016-02-11 21:55:07 +08:00
|
|
|
source "drivers/sensor/Kconfig.bmp280"
|
|
|
|
|
2016-02-26 20:40:25 +08:00
|
|
|
source "drivers/sensor/Kconfig.hdc1008"
|
|
|
|
|
2016-01-26 23:07:34 +08:00
|
|
|
source "drivers/sensor/Kconfig.isl29035"
|
|
|
|
|
2016-03-22 00:16:28 +08:00
|
|
|
source "drivers/sensor/Kconfig.lis3dh"
|
|
|
|
|
2016-02-29 21:12:20 +08:00
|
|
|
source "drivers/sensor/Kconfig.lsm9ds0_gyro"
|
2016-02-17 19:32:13 +08:00
|
|
|
|
2016-03-16 23:17:56 +08:00
|
|
|
source "drivers/sensor/Kconfig.lsm9ds0_mfd"
|
|
|
|
|
2016-03-17 20:40:23 +08:00
|
|
|
source "drivers/sensor/Kconfig.mcp9808"
|
2016-02-23 23:10:20 +08:00
|
|
|
|
2016-02-22 22:22:16 +08:00
|
|
|
source "drivers/sensor/Kconfig.sht3xd"
|
|
|
|
|
2016-03-17 20:40:23 +08:00
|
|
|
source "drivers/sensor/Kconfig.sx9500"
|
2016-04-05 19:37:45 +08:00
|
|
|
|
|
|
|
source "drivers/sensor/Kconfig.tmp007"
|