The functions fnmatch(), getopt(), getentropy() and others are grouped into the standard Option Group POSIX_C_LIB_EXT. The getentropy() function is currently in-draft for Issue 8 as of 2021. https://www.opengroup.org/austin/docs/austin_1110.pdf Not surprisingly, the POSIX_C_LIB_EXT Option Group also includes the highly debated strnlen() function. Moving that function will be deferred until later. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
34 lines
842 B
Plaintext
34 lines
842 B
Plaintext
# Drivers configuration options for SeeedStudio Grove Devices
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config GROVE_SENSORS
|
|
bool "Seeed Grove sensors support"
|
|
default y
|
|
depends on DT_HAS_SEEED_GROVE_LIGHT_ENABLED || DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED
|
|
help
|
|
Enable Seeed Grove sensors support.
|
|
|
|
if GROVE_SENSORS
|
|
|
|
config GROVE_LIGHT_SENSOR
|
|
bool "The Seeed Grove Light Sensor"
|
|
default y
|
|
depends on DT_HAS_SEEED_GROVE_LIGHT_ENABLED
|
|
select ADC
|
|
help
|
|
Setting this value will enable driver support for the Grove Light
|
|
Sensor.
|
|
|
|
config GROVE_TEMPERATURE_SENSOR
|
|
bool "The Seeed Grove Temperature Sensor"
|
|
default y
|
|
depends on DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED
|
|
select ADC
|
|
help
|
|
Setting this value will enable driver support for the Grove
|
|
Temperature Sensor.
|
|
|
|
endif # GROVE_SENSORS
|