31 lines
994 B
Plaintext
31 lines
994 B
Plaintext
|
#===============================================================================
|
||
|
# @brief Kconfig file.
|
||
|
# Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2023-2023. All rights reserved.
|
||
|
#===============================================================================
|
||
|
|
||
|
choice
|
||
|
prompt "SLE Sample"
|
||
|
|
||
|
config SAMPLE_SUPPORT_SLE_UUID_SERVER_SAMPLE
|
||
|
bool "Support SLE UUID Server Sample."
|
||
|
|
||
|
config SAMPLE_SUPPORT_SLE_UUID_CLIENT_SAMPLE
|
||
|
bool "Support SLE UUID Client Sample."
|
||
|
|
||
|
config SAMPLE_SUPPORT_SLE_SPEED_SERVER_SAMPLE
|
||
|
bool "Support SLE Throughput Server Sample."
|
||
|
|
||
|
config LARGE_THROUGHPUT_SERVER
|
||
|
bool "server large throughput."
|
||
|
default y
|
||
|
depends on SAMPLE_SUPPORT_SLE_SPEED_SERVER_SAMPLE
|
||
|
|
||
|
config SAMPLE_SUPPORT_SLE_SPEED_CLIENT_SAMPLE
|
||
|
bool "Support SLE Throughput Client Sample."
|
||
|
|
||
|
config LARGE_THROUGHPUT_CLIENT
|
||
|
bool "client large throughput."
|
||
|
default y
|
||
|
depends on SAMPLE_SUPPORT_SLE_SPEED_CLIENT_SAMPLE
|
||
|
|
||
|
endchoice
|