1menu "Example Configuration" 2 3 config ESP_FTM_REPORT_LOG_ENABLE 4 bool "FTM Report logging" 5 default n 6 depends on ESP_WIFI_FTM_INITIATOR_SUPPORT 7 help 8 Select this option to get a detailed report of FTM Procedure with raw values 9 10 config ESP_FTM_REPORT_SHOW_DIAG 11 depends on ESP_FTM_REPORT_LOG_ENABLE 12 bool "Show dialog tokens" 13 default y 14 15 config ESP_FTM_REPORT_SHOW_RTT 16 depends on ESP_FTM_REPORT_LOG_ENABLE 17 bool "Show RTT values" 18 default y 19 20 config ESP_FTM_REPORT_SHOW_T1T2T3T4 21 depends on ESP_FTM_REPORT_LOG_ENABLE 22 bool "Show T1 to T4" 23 default y 24 25 config ESP_FTM_REPORT_SHOW_RSSI 26 depends on ESP_FTM_REPORT_LOG_ENABLE 27 bool "Show RSSI levels" 28 default y 29 30endmenu 31