赞
踩
本篇文章以ESP32C3平台作为主机连接血糖仪蓝牙设备的过程为例,对代码的实现进行分析与理解。
在上手撕代码之前,让我们准备好砍柴刀,先使用nRF Connect APP连接血糖仪对Gatt协议概念以及各层次进行理解,APP下载链接自行百度,这里就不贴出来了,废话不多说,打开手机蓝牙连接血糖仪蓝牙设备,左图为血糖仪的所有服务项,分别是Generic Access、Device Information、Unknown Service、Unknown Service四项服务(Service),右图是UUID为0x1000的Unknown Service服务项的内容,该服务有四个特征(Characteristic)Unknown Characteristic ,每个特征下又有许多属性,下面对涉及到的各个概念进行说明。
其他概念
下面是本例中用到的也是比较常用的API接口的说明
查找特征(通过给定的特征uuid来搜索结果)
注册通知(若特征有通知属性,则需要额外注册通知并且写通知的描述符CCCD(描述符UUID:0x2902))
写特征描述符(通过这个API写描述符的值)
读特征(顾名思义,读取对应handle特征的值)
写特征(同上)
具体官方文档的API说明
本例使用了gattc_multi_connect官方示例进行修改,官方示例完成了一个可以连接多个蓝牙设备的主机,主机连接设备的整体流程图如下:
这里流程图已经把GATTC扫描连接的过程描述得很清楚了,现在让我们通过官方提供的接口来完成这些流程:
1) Register Callbacks & Register APP Profile
//Register Callbacks: esp_gap_cb && esp_gattc_cb
esp_ble_gap_register_callback(esp_gap_cb);
esp_ble_gattc_register_callback(esp_gattc_cb);
//Register APP Profile: PROFILE_Bioland_BGM_APP_ID
esp_ble_gattc_app_register(PROFILE_Bioland_BGM_APP_ID);
2)Set scan parameters
//以下是esp_gap_cb回调函数中更新连接参数的事件,在这个事件中设置了扫描参数
case ESP_GAP_BLE_UPDATE_CONN_PARAMS_EVT:
ESP_LOGI(GATTC_TAG, "update connection params status = %d, min_int = %d, max_int = %d,conn_int = %d,latency = %d, timeout = %d",
param->update_conn_params.status,
param->update_conn_params.min_int,
param->update_conn_params.max_int,
param->update_conn_params.conn_int,
param->update_conn_params.latency,
param->update_conn_params.timeout);
break;
3)Start scanning
//当设置完连接参数进入设置完成事件开启GAP扫描
case ESP_GAP_BLE_SCAN_PARAM_SET_COMPLETE_EVT: {
//the unit of the duration is second
uint32_t duration = 30;
esp_ble_gap_start_scanning(duration);
break;
}
4)Get scan results
case ESP_GAP_BLE_SCAN_RESULT_EVT: { esp_ble_gap_cb_param_t *scan_result = (esp_ble_gap_cb_param_t *)param; switch (scan_result->scan_rst.search_evt) { case ESP_GAP_SEARCH_INQ_RES_EVT: esp_log_buffer_hex(GATTC_TAG, scan_result->scan_rst.bda, 6); ESP_LOGI(GATTC_TAG, "Searched Adv Data Len %d, Scan Response Len %d", scan_result->scan_rst.adv_data_len, scan_result->scan_rst.scan_rsp_len); adv_name = esp_ble_resolve_adv_data(scan_result->scan_rst.ble_adv, ESP_BLE_AD_TYPE_NAME_CMPL, &adv_name_len); ESP_LOGI(GATTC_TAG, "Searched Device Name Len %d", adv_name_len); esp_log_buffer_char(GATTC_TAG, adv_name, adv_name_len); ESP_LOGI(GATTC_TAG, "\n"); if (Isconnecting){ break; } if (conn_device_a && conn_device_b && !stop_scan_done){ stop_scan_done = true; esp_ble_gap_stop_scanning(); ESP_LOGI(GATTC_TAG, "all devices are connected"); break; } if (adv_name != NULL) { if (strlen(remote_device_name[0]) == adv_name_len && strncmp((char *)adv_name, remote_device_name[0], adv_name_len) == 0) { if (conn_device_a == false) { conn_device_a = true; esp_bd_addr_t bda; memcpy(bda, scan_result->scan_rst.bda, sizeof(esp_bd_addr_t)); ESP_LOGI(GATTC_TAG, "bd_addr:%08x%04x",(bda[0] << 24) + (bda[1] << 16) + (bda[2] << 8) + bda[3],(bda[4] << 8) + bda[5]); esp_ble_gap_stop_scanning(); ESP_LOGI(GATTC_TAG, "%s", remote_device_name[0]); esp_ble_gattc_open(gl_profile_tab[PROFILE_Bioland_IT_APP_ID].gattc_if, scan_result->scan_rst.bda, scan_result->scan_rst.ble_addr_type, true); Isconnecting = true; } break; } } break; }
以上四个步骤是在esp_gap_cb这个回调函数中完成的,之后的流程就在你注册的APP Profile接口函数中完成
那么接下来了解APP Profile接口函数的注册,在注册APP Profile接口函数之前先注册了esp_gattc_cb回调函数,所以APP Profile接口函数注册在回调函数中完成:
static void esp_gattc_cb(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param) { if (event == ESP_GATTC_REG_EVT) { if (param->reg.status == ESP_GATT_OK) { gl_profile_tab[param->reg.app_id].gattc_if = gattc_if; } else { ESP_LOGI(GATTC_TAG, "Reg app failed, app_id %04x, status %d", param->reg.app_id, param->reg.status); return; } } /* 定义了多少个PROFILE_NUM,这里就会注册多少个APP Profile接口函数 */ do { int idx; for (idx = 0; idx < PROFILE_NUM; idx++) { if (gattc_if == ESP_GATT_IF_NONE || /* ESP_GATT_IF_NONE, not specify a certain gatt_if, need to call every profile cb function */ gattc_if == gl_profile_tab[idx].gattc_if) { if (gl_profile_tab[idx].gattc_cb) { gl_profile_tab[idx].gattc_cb(event, gattc_if, param); } } } } while (0); }
其中gl_profile_tab[idx]定义了APP Profile接口函数的入口,即为gattc_profile_event_handler
static struct gattc_profile_inst gl_profile_tab[PROFILE_NUM] = {
[PROFILE_Bioland_BGM_APP_ID] = {
.gattc_cb = gattc_profile_event_handler,
.gattc_if = ESP_GATT_IF_NONE,
},
};
那如何能够从esp_gap_cb函数跳转到APP Profile接口函数,那就用到了esp_gap_cb中得到扫描结果判断出连接设备后使用esp_ble_gattc_open()这个接口;这个接口完成后会触发跳转到对应设备的APP Profile接口函数中的ESP_GATTC_OPEN_EVT事件进行处理:
case ESP_GATTC_OPEN_EVT: if (p_data->open.status != ESP_GATT_OK){ //open failed, ignore the first device, connect the second device ESP_LOGE(GATTC_TAG, "connect device failed, status %d", p_data->open.status); conn_device_a = false; //start_scan(); break; } memcpy(gl_profile_tab[PROFILE_Bioland_BGM_APP_ID].remote_bda, p_data->open.remote_bda, 6); gl_profile_tab[PROFILE_Bioland_BGM_APP_ID].conn_id = p_data->open.conn_id; ESP_LOGI(GATTC_TAG, "ESP_GATTC_OPEN_EVT conn_id %d, if %d, status %d, mtu %d", p_data->open.conn_id, gattc_if, p_data->open.status, p_data->open.mtu); ESP_LOGI(GATTC_TAG, "REMOTE BDA:"); esp_log_buffer_hex(GATTC_TAG, p_data->open.remote_bda, sizeof(esp_bd_addr_t)); esp_err_t mtu_ret = esp_ble_gattc_send_mtu_req (gattc_if, p_data->open.conn_id); if (mtu_ret){ ESP_LOGE(GATTC_TAG, "config MTU error, error code = %x", mtu_ret); } break;
此时已经连接上蓝牙设备,之后可以对蓝牙设备进行操作与协议数据的交互…
1)Configure MTU size && Search service
case ESP_GATTC_CFG_MTU_EVT:
if (param->cfg_mtu.status != ESP_GATT_OK){
ESP_LOGE(GATTC_TAG,"Config mtu failed");
}
ESP_LOGI(GATTC_TAG, "Status %d, MTU %d, conn_id %d", param->cfg_mtu.status, param->cfg_mtu.mtu, param->cfg_mtu.conn_id);
esp_ble_gattc_search_service(gattc_if, param->cfg_mtu.conn_id, NULL);//第三个参数是你想要搜索的ServiceUUID,若设置为NULL则搜索所有Service
break;
2)Get characteristic
//通过0x1002uuid查找特征并存储搜索信息
ESP_LOGE(GATTC_TAG, "remote_handle.service_start_handle %d",remote_handle.service_start_handle);
status = esp_ble_gattc_get_char_by_uuid( gattc_if,
p_data->search_cmpl.conn_id,
remote_handle.service_start_handle,
remote_handle.service_end_handle,
remote_filter_char_uuid_TX,
char_elem_result_REMOTE_TX,
&count);
ESP_LOGE(GATTC_TAG, "Txchar_by_uuid %d",count);
ESP_LOGE(GATTC_TAG, "status %d",status);
if (status != ESP_GATT_OK){
ESP_LOGE(GATTC_TAG, "esp_ble_gattc_get_Txchar_by_uuid error");
}
3)Register for notifications
if (count > 0 && (char_elem_result_REMOTE_TX[0].properties & ESP_GATT_CHAR_PROP_BIT_NOTIFY)){
ESP_LOGE(GATTC_TAG, "handle:%d",char_elem_result_REMOTE_TX[0].char_handle);
remote_handle.char_handle = char_elem_result_REMOTE_TX[0].char_handle;
esp_ble_gattc_register_for_notify (gattc_if, gl_profile_tab[PROFILE_Bioland_IT_APP_ID].remote_bda, char_elem_result_REMOTE_TX[0].char_handle);
}
以上就是ESP32C3作为主机连接蓝牙设备的基本流程,其实通过esp_gap_cb进行扫描广播与设备连接后,GATT协议的处理流程就是:
1、搜索sevice uuid 得到结果信息存储到相应的数据结构
2、搜索char uuid得到结果信息(handle、propertits、uuid)存储到相应的数据结构
3、通过存储的结果数据结构来进行读写 通知注册 写入描述符值选择使能通知或指示
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。