2021-05-21 01:49:09 +00:00
|
|
|
# Copyright (c) 2021, Legrand North America, LLC.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
config CUSTOM_LIB
|
|
|
|
bool "custom_lib Support"
|
2022-11-19 14:36:33 +00:00
|
|
|
help
|
2021-05-21 01:49:09 +00:00
|
|
|
This option enables the custom_lib library
|
|
|
|
|
|
|
|
config CUSTOM_LIB_GET_VALUE_DEFAULT
|
|
|
|
int "custom_lib_get_value() default return value"
|
|
|
|
depends on CUSTOM_LIB
|
2022-11-19 14:36:33 +00:00
|
|
|
default 0
|
2021-05-21 01:49:09 +00:00
|
|
|
help
|
|
|
|
This option primarily exists as an example of a library Kconfig
|
|
|
|
setting.
|
|
|
|
|
|
|
|
This option specifies the value for custom_lib_get_value()
|
|
|
|
to return when the input parameter is zero. (Otherwise
|
|
|
|
the function returns the input parameter value.)
|