fix(nimble): Add notify characteristic flag support

This commit is contained in:
Rahul Tank
2024-07-24 09:22:49 +05:30
parent 59e1838270
commit fb55646270
5 changed files with 44 additions and 2 deletions

View File

@@ -65,6 +65,11 @@ static esp_err_t prov_start(protocomm_t *pc, void *config)
#if defined(CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION)
ble_config->ble_link_encryption = 1;
#endif
#if defined(CONFIG_WIFI_PROV_BLE_NOTIFY)
ble_config->ble_notify = 1;
#endif
/* Start protocomm as BLE service */
if (protocomm_ble_start(pc, ble_config) != ESP_OK) {
ESP_LOGE(TAG, "Failed to start protocomm BLE service");