mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 12:29:40 +00:00
30 lines
819 B
Plaintext
30 lines
819 B
Plaintext
menu "Example 'SPP SERVER' Config"
|
|
|
|
choice EXAMPLE_SPP_SERVER
|
|
prompt "SPP TRANSPORT mode"
|
|
default EXAMPLE_SPP_THROUGHPUT
|
|
help
|
|
Define SPP TRANSPORT mode
|
|
|
|
config EXAMPLE_SPP_THROUGHPUT
|
|
bool "Throughput"
|
|
config EXAMPLE_SPP_RELIABLE
|
|
bool "Reliable"
|
|
endchoice
|
|
|
|
config EXAMPLE_ENABLE_RF_EMC_TEST_MODE
|
|
bool
|
|
prompt "Enable BLE EMC test mode for RF"
|
|
default n
|
|
help
|
|
Use this option to enable BLE EMC test mode for RF.
|
|
|
|
config EXAMPLE_ENABLE_RF_TESTING_CONFIGURATION_COMMAND
|
|
bool
|
|
prompt "Enable Configuration command during RF testing"
|
|
default n
|
|
help
|
|
Use this option to enable configuration command when this example is used for RF testing.
|
|
|
|
endmenu
|