mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
fix(nimble): Added code for missing adv stop in blufi
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2025 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@ -511,7 +511,10 @@ void esp_blufi_disconnect(void)
|
|||||||
ble_gap_terminate(blufi_env.conn_id, BLE_ERR_REM_USER_CONN_TERM);
|
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)
|
void esp_blufi_send_encap(void *arg)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user