From f66c942b869a2475763447e62f72c25c83c122b2 Mon Sep 17 00:00:00 2001 From: "Pok.Liu" Date: Wed, 18 May 2022 14:20:18 +0800 Subject: [PATCH] Make blufi(nimble) customizable broadcast --- .../btc/profile/esp/blufi/nimble_host/esp_blufi.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c b/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c index c8410ea37e..1c67e71a2c 100644 --- a/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c +++ b/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c @@ -238,8 +238,8 @@ int esp_blufi_gatt_svr_init(void) return 0; } -static int -esp_blufi_gap_event(struct ble_gap_event *event, void *arg) +int +esp_blufi_gap_event(struct ble_gap_event *event, void *adv_start_callback) { struct ble_gap_conn_desc desc; int rc; @@ -271,7 +271,7 @@ esp_blufi_gap_event(struct ble_gap_event *event, void *arg) } if (event->connect.status != 0) { /* Connection failed; resume advertising. */ - esp_blufi_adv_start(); + ((void(*)())adv_start_callback)(); } return 0; case BLE_GAP_EVENT_DISCONNECT: @@ -306,7 +306,7 @@ esp_blufi_gap_event(struct ble_gap_event *event, void *arg) case BLE_GAP_EVENT_ADV_COMPLETE: ESP_LOGI(TAG, "advertise complete; reason=%d", event->adv_complete.reason); - esp_blufi_adv_start(); + ((void(*)())adv_start_callback)(); return 0; case BLE_GAP_EVENT_SUBSCRIBE: @@ -401,7 +401,7 @@ void esp_blufi_adv_start(void) adv_params.conn_mode = BLE_GAP_CONN_MODE_UND; adv_params.disc_mode = BLE_GAP_DISC_MODE_GEN; rc = ble_gap_adv_start(own_addr_type, NULL, BLE_HS_FOREVER, - &adv_params, esp_blufi_gap_event, NULL); + &adv_params, esp_blufi_gap_event, esp_blufi_adv_start); if (rc != 0) { ESP_LOGE(TAG, "error enabling advertisement; rc=%d\n", rc); return;