Merge branch 'bugfix/blufi_add_missing_adv_stop_v5.4' into 'release/v5.4'

fix(nimble): Added code for missing adv stop in blufi (v5.4)

See merge request espressif/esp-idf!38718
This commit is contained in:
Rahul Tank
2025-04-28 19:19:18 +08:00

View File

@@ -511,7 +511,10 @@ void esp_blufi_disconnect(void)
ble_gap_terminate(blufi_env.conn_id, BLE_ERR_REM_USER_CONN_TERM);
}
void esp_blufi_adv_stop(void) {}
void esp_blufi_adv_stop(void)
{
ble_gap_adv_stop();
}
void esp_blufi_send_encap(void *arg)
{