Kconfig 1.2 KB

123456789101112131415161718192021222324252627
  1. menu "Example 'GATT SERVER THROUGHPUT' Config"
  2. config SET_RAW_ADV_DATA
  3. bool "Use raw data for advertising packets and scan response data"
  4. help
  5. If this config item is set, raw binary data will be used to generate advertising & scan response data.
  6. This option uses the esp_ble_gap_config_adv_data_raw() and esp_ble_gap_config_scan_rsp_data_raw()
  7. functions.
  8. If this config item is unset, advertising & scan response data is provided via a higher-level
  9. esp_ble_adv_data_t structure. The lower layer will generate the BLE packets. This option has higher
  10. overhead at runtime.
  11. config GATTS_NOTIFY_THROUGHPUT
  12. bool "test the gatts notify throughput"
  13. help
  14. If this config item is set, then the 'GATTC_WRITE_THROUGHPUT' config should be close, it can't test both
  15. write or notify at the same time at this demo
  16. config GATTC_WRITE_THROUGHPUT
  17. bool "test the gattc write throughput"
  18. help
  19. If this config item is set, then the 'GATTS_NOTIFY_THROUGHPUT' config should be close, it can't test both
  20. write or notify at the same time at this demo
  21. endmenu