mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c93907fb27
Move FTM report processing and logging to application Update wifi lib with below bugfixes 1. Initiator parameters sanity checks 2. Responder config option, fix beacon caps 3. To save space, register FTM modules only when FTM is enabled Co-Authored-By: Nachiket Kukade <nachiket.kukade@espressif.com> Co-Authored-By: Zhang Jun Hao <zhangjunhao@espressif.com>
31 lines
809 B
Plaintext
31 lines
809 B
Plaintext
menu "Example Configuration"
|
|
|
|
config ESP_FTM_REPORT_LOG_ENABLE
|
|
bool "FTM Report logging"
|
|
default n
|
|
depends on ESP_WIFI_FTM_INITIATOR_SUPPORT
|
|
help
|
|
Select this option to get a detailed report of FTM Procedure with raw values
|
|
|
|
config ESP_FTM_REPORT_SHOW_DIAG
|
|
depends on ESP_FTM_REPORT_LOG_ENABLE
|
|
bool "Show dialog tokens"
|
|
default y
|
|
|
|
config ESP_FTM_REPORT_SHOW_RTT
|
|
depends on ESP_FTM_REPORT_LOG_ENABLE
|
|
bool "Show RTT values"
|
|
default y
|
|
|
|
config ESP_FTM_REPORT_SHOW_T1T2T3T4
|
|
depends on ESP_FTM_REPORT_LOG_ENABLE
|
|
bool "Show T1 to T4"
|
|
default y
|
|
|
|
config ESP_FTM_REPORT_SHOW_RSSI
|
|
depends on ESP_FTM_REPORT_LOG_ENABLE
|
|
bool "Show RSSI levels"
|
|
default y
|
|
|
|
endmenu
|