forked from espressif/esp-idf
22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
menu "Example Configuration"
|
|
|
|
choice COMMANDS_FORMAT
|
|
prompt "PHY Commands Format"
|
|
default ESP_PHY_NEW_COMMANDS
|
|
config ESP_PHY_LEGACY_COMMANDS
|
|
bool "Legacy Commands Format"
|
|
|
|
config ESP_PHY_NEW_COMMANDS
|
|
bool "New Commands Format"
|
|
|
|
endchoice
|
|
|
|
config COMMANDS_ENABLE_BLE_DTM_TEST
|
|
bool "Enable BLE DTM Test Mode"
|
|
depends on IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2
|
|
default n
|
|
help
|
|
Enable this option to support BLE Direct Test Mode (DTM) for RF testing and validation.
|
|
|
|
endmenu
|