2018-07-30 12:06:48 -04:00
|
|
|
// Copyright 2015-2018 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
#ifndef _SIMPLE_BLE_
|
|
|
|
#define _SIMPLE_BLE_
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <esp_gap_ble_api.h>
|
|
|
|
#include <esp_gatts_api.h>
|
|
|
|
|
|
|
|
typedef void (simple_ble_cb_t)(esp_gatts_cb_event_t event, esp_gatt_if_t p_gatts_if, esp_ble_gatts_cb_param_t *param);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This structure is populated with the details required
|
|
|
|
* to create an instance of BLE easily. It requires function
|
|
|
|
* pointers, advertising parameters and gatt description table
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/** Name to be displayed to devices scanning for ESP32 */
|
|
|
|
const char *device_name;
|
2019-05-09 17:30:13 -04:00
|
|
|
/** Raw advertisement data */
|
|
|
|
uint8_t *raw_adv_data_p;
|
|
|
|
uint8_t raw_adv_data_len;
|
|
|
|
/** Raw scan response data */
|
|
|
|
uint8_t *raw_scan_rsp_data_p;
|
|
|
|
uint8_t raw_scan_rsp_data_len;
|
2018-07-30 12:06:48 -04:00
|
|
|
/** Parameters to configure the nature of advertising */
|
|
|
|
esp_ble_adv_params_t adv_params;
|
2019-05-09 17:30:13 -04:00
|
|
|
/** Descriptor table which consists of the configuration
|
|
|
|
* required by services and characteristics */
|
2018-07-30 12:06:48 -04:00
|
|
|
esp_gatts_attr_db_t *gatt_db;
|
|
|
|
/** Number of entries in the gatt_db descriptor table */
|
|
|
|
ssize_t gatt_db_count;
|
|
|
|
/** BLE read callback */
|
|
|
|
simple_ble_cb_t *read_fn;
|
|
|
|
/** BLE write callback */
|
|
|
|
simple_ble_cb_t *write_fn;
|
|
|
|
/** BLE exec write callback */
|
|
|
|
simple_ble_cb_t *exec_write_fn;
|
|
|
|
/** Client disconnect callback */
|
|
|
|
simple_ble_cb_t *disconnect_fn;
|
|
|
|
/** Client connect callback */
|
|
|
|
simple_ble_cb_t *connect_fn;
|
|
|
|
/** MTU set callback */
|
|
|
|
simple_ble_cb_t *set_mtu_fn;
|
|
|
|
} simple_ble_cfg_t;
|
|
|
|
|
|
|
|
|
2019-02-08 04:51:33 -05:00
|
|
|
/** Initialize a simple ble connection
|
2018-07-30 12:06:48 -04:00
|
|
|
*
|
|
|
|
* This function allocates memory and returns a pointer to the
|
|
|
|
* configuration structure.
|
|
|
|
*
|
|
|
|
* @return simple_ble_cfg_t* Pointer to configuration structure
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
simple_ble_cfg_t *simple_ble_init(void);
|
2018-07-30 12:06:48 -04:00
|
|
|
|
|
|
|
/** Deallocates memory
|
|
|
|
*
|
|
|
|
* This function deallocate memory of the configuration structure.
|
|
|
|
*
|
|
|
|
* @return ESP_OK
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
esp_err_t simple_ble_deinit(void);
|
2018-07-30 12:06:48 -04:00
|
|
|
|
|
|
|
/** Starts BLE service
|
|
|
|
*
|
|
|
|
* This function makes calls to the GATT and GAP APIs
|
|
|
|
* to initialize the BLE service as per parameters stored
|
|
|
|
* in the config structure. At the end of this function,
|
|
|
|
* one should be able to scan and connect to the ESP32 device
|
|
|
|
* using BLE.
|
|
|
|
* This API sets the MTU size to 500 (this is not part of the config structure)
|
|
|
|
*
|
|
|
|
* @return ESP_OK on success, and appropriate error code for failure
|
|
|
|
*/
|
|
|
|
esp_err_t simple_ble_start(simple_ble_cfg_t *cfg);
|
|
|
|
|
|
|
|
/** Stops the BLE service
|
|
|
|
*
|
|
|
|
* This API is called to stop the BLE service.
|
|
|
|
* This includes calls to disable and deinit bluedroid and bt controller.
|
|
|
|
*
|
|
|
|
* @return ESP_OK on success, and appropriate error code for failure
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
esp_err_t simple_ble_stop(void);
|
2018-07-30 12:06:48 -04:00
|
|
|
|
2019-05-09 17:30:13 -04:00
|
|
|
/** Convert handle to 128 bit UUID of characteristic
|
2018-07-30 12:06:48 -04:00
|
|
|
*
|
|
|
|
* This function can be easily used to get the corresponding
|
|
|
|
* UUID for a characteristic that has been created, and the one for
|
|
|
|
* which we only have the handle for.
|
|
|
|
*
|
2019-05-09 17:30:13 -04:00
|
|
|
* @return Pointer to UUID of the characteristic
|
|
|
|
* NULL in case of invalid handle
|
2018-07-30 12:06:48 -04:00
|
|
|
*/
|
2019-05-09 17:30:13 -04:00
|
|
|
const uint8_t *simple_ble_get_uuid128(uint16_t handle);
|
2018-07-30 12:06:48 -04:00
|
|
|
|
|
|
|
#endif /* _SIMPLE_BLE_ */
|