mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-22 09:20:59 +02:00
346 lines
12 KiB
C++
346 lines
12 KiB
C++
/**
|
|
* @file BLEModule.cpp
|
|
* @brief BLEModule implementation file
|
|
* */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/event_groups.h"
|
|
#include "esp_system.h"
|
|
#include "esp_bt.h"
|
|
#include "esp_gap_ble_api.h"
|
|
#include "esp_gatts_api.h"
|
|
#include "esp_bt_defs.h"
|
|
#include "esp_bt_main.h"
|
|
#include "esp_gatt_common_api.h"
|
|
#include "module.h"
|
|
|
|
static uint8_t adv_config_done = 0;
|
|
#define adv_config_flag (1 << 0)
|
|
#define scan_rsp_config_flag (1 << 1)
|
|
|
|
#define GATTS_TAG "GATTS"
|
|
|
|
static esp_ble_adv_params_t adv_params = {
|
|
.adv_int_min = 0x20,
|
|
.adv_int_max = 0x40,
|
|
.adv_type = ADV_TYPE_IND,
|
|
.own_addr_type = BLE_ADDR_TYPE_RANDOM,
|
|
.peer_addr = {},
|
|
.peer_addr_type = {},
|
|
.channel_map = ADV_CHNL_ALL,
|
|
.adv_filter_policy = ADV_FILTER_ALLOW_SCAN_ANY_CON_ANY,
|
|
};
|
|
|
|
static uint8_t adv_service_uuid128[32] = {
|
|
/* LSB <--------------------------------------------------------------------------------> MSB */
|
|
//first uuid, 16bit, [12],[13] is the value
|
|
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0xEE, 0x00, 0x00, 0x00,
|
|
//second uuid, 32bit, [12], [13], [14], [15] is the value
|
|
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
|
|
};
|
|
|
|
// The length of adv data must be less than 31 bytes
|
|
//static uint8_t test_manufacturer[TEST_MANUFACTURER_DATA_LEN] = {0x12, 0x23, 0x45, 0x56};
|
|
//adv data
|
|
static esp_ble_adv_data_t adv_data = {
|
|
.set_scan_rsp = false,
|
|
.include_name = true,
|
|
.include_txpower = true,
|
|
.min_interval = 0x0006, //slave connection min interval, Time = min_interval * 1.25 msec
|
|
.max_interval = 0x0010, //slave connection max interval, Time = max_interval * 1.25 msec
|
|
.appearance = 0x00,
|
|
.manufacturer_len = 0, //TEST_MANUFACTURER_DATA_LEN,
|
|
.p_manufacturer_data = NULL, //&test_manufacturer[0],
|
|
.service_data_len = 0,
|
|
.p_service_data = NULL,
|
|
.service_uuid_len = sizeof(adv_service_uuid128),
|
|
.p_service_uuid = adv_service_uuid128,
|
|
.flag = (ESP_BLE_ADV_FLAG_GEN_DISC | ESP_BLE_ADV_FLAG_BREDR_NOT_SPT),
|
|
};
|
|
// scan response data
|
|
static esp_ble_adv_data_t scan_rsp_data = {
|
|
.set_scan_rsp = true,
|
|
.include_name = true,
|
|
.include_txpower = true,
|
|
.min_interval = 0x0006,
|
|
.max_interval = 0x0010,
|
|
.appearance = 0x00,
|
|
.manufacturer_len = 0, //TEST_MANUFACTURER_DATA_LEN,
|
|
.p_manufacturer_data = NULL, //&test_manufacturer[0],
|
|
.service_data_len = 0,
|
|
.p_service_data = NULL,
|
|
.service_uuid_len = sizeof(adv_service_uuid128),
|
|
.p_service_uuid = adv_service_uuid128,
|
|
.flag = (ESP_BLE_ADV_FLAG_GEN_DISC | ESP_BLE_ADV_FLAG_BREDR_NOT_SPT),
|
|
};
|
|
|
|
#define adv_config_flag (1 << 0)
|
|
#define scan_rsp_config_flag (1 << 1)
|
|
|
|
static char *esp_key_type_to_str(esp_ble_key_type_t key_type){
|
|
|
|
char *key_str = NULL;
|
|
switch(key_type) {
|
|
case ESP_LE_KEY_NONE:
|
|
key_str = "ESP_LE_KEY_NONE";
|
|
break;
|
|
case ESP_LE_KEY_PENC:
|
|
key_str = "ESP_LE_KEY_PENC";
|
|
break;
|
|
case ESP_LE_KEY_PID:
|
|
key_str = "ESP_LE_KEY_PID";
|
|
break;
|
|
case ESP_LE_KEY_PCSRK:
|
|
key_str = "ESP_LE_KEY_PCSRK";
|
|
break;
|
|
case ESP_LE_KEY_PLK:
|
|
key_str = "ESP_LE_KEY_PLK";
|
|
break;
|
|
case ESP_LE_KEY_LLK:
|
|
key_str = "ESP_LE_KEY_LLK";
|
|
break;
|
|
case ESP_LE_KEY_LENC:
|
|
key_str = "ESP_LE_KEY_LENC";
|
|
break;
|
|
case ESP_LE_KEY_LID:
|
|
key_str = "ESP_LE_KEY_LID";
|
|
break;
|
|
case ESP_LE_KEY_LCSRK:
|
|
key_str = "ESP_LE_KEY_LCSRK";
|
|
break;
|
|
default:
|
|
key_str = "INVALID BLE KEY TYPE";
|
|
break;
|
|
|
|
}
|
|
|
|
return key_str;
|
|
}
|
|
|
|
static char *esp_auth_req_to_str(esp_ble_auth_req_t auth_req){
|
|
|
|
char *auth_str = NULL;
|
|
switch(auth_req) {
|
|
case ESP_LE_AUTH_NO_BOND:
|
|
auth_str = "ESP_LE_AUTH_NO_BOND";
|
|
break;
|
|
case ESP_LE_AUTH_BOND:
|
|
auth_str = "ESP_LE_AUTH_BOND";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_MITM:
|
|
auth_str = "ESP_LE_AUTH_REQ_MITM";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_BOND_MITM:
|
|
auth_str = "ESP_LE_AUTH_REQ_BOND_MITM";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_SC_ONLY:
|
|
auth_str = "ESP_LE_AUTH_REQ_SC_ONLY";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_SC_BOND:
|
|
auth_str = "ESP_LE_AUTH_REQ_SC_BOND";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_SC_MITM:
|
|
auth_str = "ESP_LE_AUTH_REQ_SC_MITM";
|
|
break;
|
|
case ESP_LE_AUTH_REQ_SC_MITM_BOND:
|
|
auth_str = "ESP_LE_AUTH_REQ_SC_MITM_BOND";
|
|
break;
|
|
default:
|
|
auth_str = "INVALID BLE AUTH REQ";
|
|
break;
|
|
}
|
|
|
|
return auth_str;
|
|
}
|
|
|
|
/**
|
|
* @brief BLE GAP server event handler
|
|
*
|
|
* Allows to connect/disconnect bluetooth devices
|
|
*
|
|
* @param event gap event fired when connection state changes
|
|
* @param param event parameters
|
|
* */
|
|
static void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param){
|
|
|
|
switch (event) { //! * look for event type
|
|
#ifdef CONFIG_SET_RAW_ADV_DATA
|
|
case ESP_GAP_BLE_ADV_DATA_RAW_SET_COMPLETE_EVT:
|
|
adv_config_done &= (~adv_config_flag);
|
|
if (adv_config_done==0){
|
|
esp_ble_gap_start_advertising(BLEModule::adv_params);
|
|
}
|
|
break;
|
|
case ESP_GAP_BLE_SCAN_RSP_DATA_RAW_SET_COMPLETE_EVT:
|
|
adv_config_done &= (~scan_rsp_config_flag);
|
|
if (adv_config_done==0){
|
|
esp_ble_gap_start_advertising(BLEModule::adv_params);
|
|
}
|
|
break;
|
|
#else
|
|
case ESP_GAP_BLE_ADV_DATA_SET_COMPLETE_EVT:
|
|
adv_config_done &= (~adv_config_flag);
|
|
if (adv_config_done == 0){
|
|
esp_ble_gap_start_advertising(&adv_params); //! * start advertising bluetooth profile to nearby devices after advertisement parameters set
|
|
}
|
|
break;
|
|
case ESP_GAP_BLE_SCAN_RSP_DATA_SET_COMPLETE_EVT:
|
|
adv_config_done &= (~scan_rsp_config_flag);
|
|
if (adv_config_done == 0){
|
|
esp_ble_gap_start_advertising(&adv_params); //! * start advertising bluetooth profile to nearby devices after nearby devices scanned
|
|
}
|
|
break;
|
|
#endif
|
|
case ESP_GAP_BLE_ADV_START_COMPLETE_EVT:
|
|
//! - advertising start complete event to indicate advertising start successfully or failed
|
|
if (param->adv_start_cmpl.status != ESP_BT_STATUS_SUCCESS) {
|
|
ESP_LOGE(GATTS_TAG, "Advertising start failed\n");
|
|
}
|
|
break;
|
|
case ESP_GAP_BLE_ADV_STOP_COMPLETE_EVT:
|
|
//! - advertising stop complete event to indicate advertising stop successfully or failed
|
|
if (param->adv_stop_cmpl.status != ESP_BT_STATUS_SUCCESS) {
|
|
ESP_LOGE(GATTS_TAG, "Advertising stop failed\n");
|
|
} else {
|
|
ESP_LOGI(GATTS_TAG, "Stop adv successfully\n");
|
|
}
|
|
break;
|
|
case ESP_GAP_BLE_PASSKEY_REQ_EVT: /* passkey request event */
|
|
ESP_LOGI(GATTS_TAG, "ESP_GAP_BLE_PASSKEY_REQ_EVT");
|
|
/* Call the following function to input the passkey which is displayed on the remote device */
|
|
esp_ble_passkey_reply(param->ble_security.ble_req.bd_addr, true, 0x00);
|
|
break;
|
|
case ESP_GAP_BLE_NC_REQ_EVT:
|
|
/* The app will receive this evt when the IO has DisplayYesNO capability and the peer device IO also has DisplayYesNo capability.
|
|
show the passkey number to the user to confirm it with the number displayed by peer device. */
|
|
esp_ble_confirm_reply(param->ble_security.ble_req.bd_addr, true);
|
|
ESP_LOGI(GATTS_TAG, "ESP_GAP_BLE_NC_REQ_EVT, the passkey Notify number:%d", param->ble_security.key_notif.passkey);
|
|
break;
|
|
case ESP_GAP_BLE_UPDATE_CONN_PARAMS_EVT: //! * handle event fired when connection params change
|
|
ESP_LOGI(GATTS_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;
|
|
case ESP_GAP_BLE_PASSKEY_NOTIF_EVT: ///the app will receive this evt when the IO has Output capability and the peer device IO has Input capability.
|
|
///show the passkey number to the user to input it in the peer device.
|
|
ESP_LOGI(GATTS_TAG, "The passkey Notify number:%06d", param->ble_security.key_notif.passkey);
|
|
break;
|
|
case ESP_GAP_BLE_KEY_EVT:
|
|
//shows the ble key info share with peer device to the user.
|
|
ESP_LOGI(GATTS_TAG, "key type = %s", esp_key_type_to_str(param->ble_security.ble_key.key_type));
|
|
break;
|
|
case ESP_GAP_BLE_SEC_REQ_EVT:
|
|
/* send the positive (true) security response to the peer device to accept the security request.
|
|
If not accept the security request, should send the security response with negative(false) accept value*/
|
|
esp_ble_gap_security_rsp(param->ble_security.ble_req.bd_addr, true);
|
|
break;
|
|
case ESP_GAP_BLE_AUTH_CMPL_EVT: {
|
|
esp_bd_addr_t bd_addr;
|
|
memcpy(bd_addr, param->ble_security.auth_cmpl.bd_addr, sizeof(esp_bd_addr_t));
|
|
ESP_LOGI(GATTS_TAG, "remote BD_ADDR: %08x%04x",\
|
|
(bd_addr[0] << 24) + (bd_addr[1] << 16) + (bd_addr[2] << 8) + bd_addr[3],
|
|
(bd_addr[4] << 8) + bd_addr[5]);
|
|
ESP_LOGI(GATTS_TAG, "address type = %d", param->ble_security.auth_cmpl.addr_type);
|
|
ESP_LOGI(GATTS_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "fail");
|
|
if(!param->ble_security.auth_cmpl.success) {
|
|
ESP_LOGI(GATTS_TAG, "fail reason = 0x%x",param->ble_security.auth_cmpl.fail_reason);
|
|
} else {
|
|
ESP_LOGI(GATTS_TAG, "auth mode = %s",esp_auth_req_to_str(param->ble_security.auth_cmpl.auth_mode));
|
|
}
|
|
// show_bonded_devices();
|
|
break;
|
|
}
|
|
case ESP_GAP_BLE_REMOVE_BOND_DEV_COMPLETE_EVT: {
|
|
ESP_LOGD(GATTS_TAG, "ESP_GAP_BLE_REMOVE_BOND_DEV_COMPLETE_EVT status = %d", param->remove_bond_dev_cmpl.status);
|
|
ESP_LOGI(GATTS_TAG, "ESP_GAP_BLE_REMOVE_BOND_DEV");
|
|
ESP_LOGI(GATTS_TAG, "-----ESP_GAP_BLE_REMOVE_BOND_DEV----");
|
|
esp_log_buffer_hex(GATTS_TAG, (void *)param->remove_bond_dev_cmpl.bd_addr, sizeof(esp_bd_addr_t));
|
|
ESP_LOGI(GATTS_TAG, "------------------------------------");
|
|
break;
|
|
}
|
|
case ESP_GAP_BLE_SET_LOCAL_PRIVACY_COMPLETE_EVT:
|
|
if (param->local_privacy_cmpl.status != ESP_BT_STATUS_SUCCESS){
|
|
ESP_LOGE(GATTS_TAG, "config local privacy failed, error status = %x", param->local_privacy_cmpl.status);
|
|
break;
|
|
}
|
|
//config adv data
|
|
esp_err_t ret;
|
|
ret = esp_ble_gap_config_adv_data(&adv_data);
|
|
if (ret){
|
|
ESP_LOGE(GATTS_TAG, "config adv data failed, error code = %x", ret);
|
|
}
|
|
adv_config_done |= adv_config_flag;
|
|
//config scan response data
|
|
ret = esp_ble_gap_config_adv_data(&scan_rsp_data);
|
|
if (ret){
|
|
ESP_LOGE(GATTS_TAG, "config scan response data failed, error code = %x", ret);
|
|
}
|
|
adv_config_done |= scan_rsp_config_flag;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
BLEModule::BLEModule(){
|
|
|
|
this->adv = &adv_params;
|
|
}
|
|
|
|
esp_err_t BLEModule::init(){
|
|
|
|
ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_CLASSIC_BT)); //! * start Bluetooth Mode (turn on bluetooth)
|
|
|
|
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
|
|
esp_err_t ret = esp_bt_controller_init(&bt_cfg); //! * initialize low-level Bluetooth controller
|
|
if (ret) {
|
|
ESP_LOGE(TAG, "%s initialize controller failed: %s\n", __func__, esp_err_to_name(ret));
|
|
return ret;
|
|
}
|
|
|
|
ret = esp_bt_controller_enable(ESP_BT_MODE_BLE); //! * enable Bluetooth Low Energy
|
|
if (ret) {
|
|
ESP_LOGE(TAG, "%s enable controller failed: %s\n", __func__, esp_err_to_name(ret));
|
|
return ret;
|
|
}
|
|
ret = esp_bluedroid_init(); //! * initialize Bluedroid api
|
|
if (ret) {
|
|
ESP_LOGE(TAG, "%s init bluetooth failed: %s\n", __func__, esp_err_to_name(ret));
|
|
return ret;
|
|
}
|
|
ret = esp_bluedroid_enable(); //! * enable Bluedroid api
|
|
if (ret) {
|
|
ESP_LOGE(TAG, "%s enable bluetooth failed: %s\n", __func__, esp_err_to_name(ret));
|
|
return ret;
|
|
}
|
|
|
|
ret = esp_ble_gap_register_callback(gap_event_handler); //! * register GAP event handler
|
|
if (ret){
|
|
ESP_LOGE(TAG, "gap register error, error code = %x", ret);
|
|
return ret;
|
|
}
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t BLEModule::deinit(){
|
|
|
|
esp_err_t ret;
|
|
ret = esp_bluedroid_disable(); //! * disable Bluedroid api
|
|
if(ret) return ret;
|
|
ret = esp_bluedroid_deinit(); //! * deinitialize Bluedroid api
|
|
if(ret) return ret;
|
|
ret = esp_bt_controller_disable(); //! * disable bluetooth controller
|
|
if(ret) return ret;
|
|
ret = esp_bt_controller_deinit(); //! * deinitialize bluetooth controller (turn off)
|
|
if(ret) return ret;
|
|
return ESP_OK;
|
|
}
|