2017-12-07 08:07:36 +00:00
|
|
|
menu "Example 'GATT SERVER THROUGHPUT' Config"
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_SET_RAW_ADV_DATA
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "Use raw data for advertising packets and scan response data"
|
|
|
|
help
|
|
|
|
If this config item is set, raw binary data will be used to generate advertising & scan response data.
|
|
|
|
This option uses the esp_ble_gap_config_adv_data_raw() and esp_ble_gap_config_scan_rsp_data_raw()
|
|
|
|
functions.
|
2017-12-07 08:07:36 +00:00
|
|
|
|
2019-01-25 16:10:53 +00:00
|
|
|
If this config item is unset, advertising & scan response data is provided via a higher-level
|
|
|
|
esp_ble_adv_data_t structure. The lower layer will generate the BLE packets. This option has higher
|
|
|
|
overhead at runtime.
|
2017-12-07 08:07:36 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_GATTS_NOTIFY_THROUGHPUT
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "test the gatts notify throughput"
|
|
|
|
help
|
2019-05-09 14:43:06 +00:00
|
|
|
If this config item is set, then the 'EXAMPLE_GATTC_WRITE_THROUGHPUT' config should be close, it can't test
|
|
|
|
both write or notify at the same time at this demo
|
2019-01-25 16:10:53 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_GATTC_WRITE_THROUGHPUT
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "test the gattc write throughput"
|
|
|
|
help
|
2019-05-09 14:43:06 +00:00
|
|
|
If this config item is set, then the 'EXAMPLE_GATTS_NOTIFY_THROUGHPUT' config should be close, it can't
|
|
|
|
test both write or notify at the same time at this demo
|
2017-12-07 08:07:36 +00:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
|