Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_GATT_UTIL_H__
#include "stack/bt_types.h"
#include "bta/bta_gatt_api.h"
#include "btc/btc_util.h"
#include "esp_bt_defs.h"
#include "esp_gatt_defs.h"
#include "esp_gattc_api.h"
#define BTC_GATT_CREATE_CONN_ID
#define BTC_GATT_GET_CONN_ID
#define BTC_GATT_GET_GATT_IF
btc128_to_bta_uuid(tBT_UUID *, uint8_t *);
btc_to_bta_gatt_id(tBTA_GATT_ID *, esp_gatt_id_t *);
btc_to_bta_srvc_id(tBTA_GATT_SRVC_ID *, esp_gatt_srvc_id_t *);
btc_to_bta_response(tBTA_GATTS_RSP *, esp_gatt_rsp_t *);
bta_to_btc_gatt_id(esp_gatt_id_t *, tBTA_GATT_ID *);
bta_to_btc_srvc_id(esp_gatt_srvc_id_t *, tBTA_GATT_SRVC_ID *);
set_read_value(uint8_t *, esp_ble_gattc_cb_param_t *, tBTA_GATTC_READ *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_gatt_util.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __BTC_GATT_UTIL_H__ #define __BTC_GATT_UTIL_H__ #include "stack/bt_types.h" #include "bta/bta_gatt_api.h" #include "btc/btc_util.h" #include "esp_bt_defs.h" #include "esp_gatt_defs.h" #include "esp_gattc_api.h"6 includes #define BTC_GATT_CREATE_CONN_ID(gatt_if, conn_id) ((uint16_t) ((((uint8_t)(conn_id)) << 8) | ((uint8_t)(gatt_if)))) #define BTC_GATT_GET_CONN_ID(conn_id) (((uint16_t)(conn_id)) >> 8) #define BTC_GATT_GET_GATT_IF(conn_id) ((uint8_t)(conn_id)) void btc128_to_bta_uuid(tBT_UUID *p_dest, uint8_t *p_src); void btc_to_bta_gatt_id(tBTA_GATT_ID *p_dest, esp_gatt_id_t *p_src); void btc_to_bta_srvc_id(tBTA_GATT_SRVC_ID *p_dest, esp_gatt_srvc_id_t *p_src); void btc_to_bta_response(tBTA_GATTS_RSP *rsp_struct, esp_gatt_rsp_t *p_rsp); void bta_to_btc_gatt_id(esp_gatt_id_t *p_dest, tBTA_GATT_ID *p_src); void bta_to_btc_srvc_id(esp_gatt_srvc_id_t *p_dest, tBTA_GATT_SRVC_ID *p_src); uint16_t set_read_value(uint8_t *gattc_if, esp_ble_gattc_cb_param_t *p_dest, tBTA_GATTC_READ *p_src); /* ... */ #endif /* __BTC_GATT_UTIL_H__*/
Details