telem3-fw/lib/custom_lib/Kconfig
Carles Cufi 0fa90bc0e7 lib: Remove trailing whitespace
We need a compliance check.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2022-11-19 16:16:52 +01:00

20 lines
567 B
Plaintext

# Copyright (c) 2021, Legrand North America, LLC.
# SPDX-License-Identifier: Apache-2.0
config CUSTOM_LIB
bool "custom_lib Support"
help
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
default 0
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.)