mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fixed_task_invokation_after_pairing' into 'master'
fix(nimble): Fixed the call to ble_hid_task_startup after pairing See merge request espressif/esp-idf!29655
This commit is contained in:
commit
dd737f9821
@ -1 +1 @@
|
|||||||
Subproject commit c0dd77a8355dd82d0bc1b501e6d118a91eb14df1
|
Subproject commit 28844aaa7fa5dd2587ea4fb297e0a71af8c5465c
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
||||||
*/
|
*/
|
||||||
@ -13,7 +13,6 @@
|
|||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
#include "freertos/semphr.h"
|
#include "freertos/semphr.h"
|
||||||
|
|
||||||
#include "esp_bt_device.h"
|
|
||||||
#include "esp_hid_gap.h"
|
#include "esp_hid_gap.h"
|
||||||
|
|
||||||
#if CONFIG_BT_NIMBLE_ENABLED
|
#if CONFIG_BT_NIMBLE_ENABLED
|
||||||
@ -23,6 +22,8 @@
|
|||||||
#include "host/ble_hs_adv.h"
|
#include "host/ble_hs_adv.h"
|
||||||
#include "nimble/ble.h"
|
#include "nimble/ble.h"
|
||||||
#include "host/ble_sm.h"
|
#include "host/ble_sm.h"
|
||||||
|
#else
|
||||||
|
#include "esp_bt_device.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char *TAG = "ESP_HID_GAP";
|
static const char *TAG = "ESP_HID_GAP";
|
||||||
@ -726,9 +727,13 @@ esp_err_t esp_hid_ble_gap_adv_start(void)
|
|||||||
return esp_ble_gap_start_advertising(&hidd_adv_params);
|
return esp_ble_gap_start_advertising(&hidd_adv_params);
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_BT_BLE_ENABLED */
|
#endif /* CONFIG_BT_BLE_ENABLED */
|
||||||
|
|
||||||
#if CONFIG_BT_NIMBLE_ENABLED
|
#if CONFIG_BT_NIMBLE_ENABLED
|
||||||
static struct ble_hs_adv_fields fields;
|
|
||||||
#define GATT_SVR_SVC_HID_UUID 0x1812
|
#define GATT_SVR_SVC_HID_UUID 0x1812
|
||||||
|
|
||||||
|
extern void ble_hid_task_start_up(void);
|
||||||
|
static struct ble_hs_adv_fields fields;
|
||||||
|
|
||||||
esp_err_t esp_hid_ble_gap_adv_init(uint16_t appearance, const char *device_name)
|
esp_err_t esp_hid_ble_gap_adv_init(uint16_t appearance, const char *device_name)
|
||||||
{
|
{
|
||||||
ble_uuid16_t *uuid16, *uuid16_1;
|
ble_uuid16_t *uuid16, *uuid16_1;
|
||||||
@ -835,6 +840,7 @@ nimble_hid_gap_event(struct ble_gap_event *event, void *arg)
|
|||||||
event->enc_change.status);
|
event->enc_change.status);
|
||||||
rc = ble_gap_conn_find(event->enc_change.conn_handle, &desc);
|
rc = ble_gap_conn_find(event->enc_change.conn_handle, &desc);
|
||||||
assert(rc == 0);
|
assert(rc == 0);
|
||||||
|
ble_hid_task_start_up();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case BLE_GAP_EVENT_NOTIFY_TX:
|
case BLE_GAP_EVENT_NOTIFY_TX:
|
||||||
|
@ -26,6 +26,8 @@
|
|||||||
#include "nimble/ble.h"
|
#include "nimble/ble.h"
|
||||||
#include "host/ble_sm.h"
|
#include "host/ble_sm.h"
|
||||||
#define BLE_HID_SVC_UUID 0x1812 /* HID Service*/
|
#define BLE_HID_SVC_UUID 0x1812 /* HID Service*/
|
||||||
|
#else
|
||||||
|
#include "esp_bt_device.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char *TAG = "ESP_HID_GAP";
|
static const char *TAG = "ESP_HID_GAP";
|
||||||
|
Loading…
Reference in New Issue
Block a user