Kconfig 610 B

123456789101112
  1. menu "Example 'GATT SERVER' 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() functions.
  7. If this config item is unset, advertising & scan response data is provided via a higher-level esp_ble_adv_data_t structure.
  8. The lower layer will generate the BLE packets. This option has higher overhead at runtime.
  9. endmenu