2021-12-06 01:59:55 -05:00
|
|
|
/*
|
2022-07-07 10:25:06 -04:00
|
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
2021-12-06 01:59:55 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
*/
|
|
|
|
|
2021-03-31 00:51:48 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_blufi_api.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_blufi.h"
|
2021-07-19 06:24:05 -04:00
|
|
|
#include "blufi_example.h"
|
2021-03-31 00:51:48 -04:00
|
|
|
#ifdef CONFIG_BT_BLUEDROID_ENABLED
|
|
|
|
#include "esp_bt.h"
|
|
|
|
#include "esp_bt_main.h"
|
|
|
|
#include "esp_bt_device.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_BT_NIMBLE_ENABLED
|
|
|
|
#include "nimble/nimble_port.h"
|
|
|
|
#include "nimble/nimble_port_freertos.h"
|
|
|
|
#include "host/ble_hs.h"
|
|
|
|
#include "host/util/util.h"
|
|
|
|
#include "services/gap/ble_svc_gap.h"
|
|
|
|
#include "services/gatt/ble_svc_gatt.h"
|
|
|
|
#include "console/console.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_BT_BLUEDROID_ENABLED
|
|
|
|
esp_err_t esp_blufi_host_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = esp_bluedroid_init();
|
|
|
|
if (ret) {
|
|
|
|
BLUFI_ERROR("%s init bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = esp_bluedroid_enable();
|
|
|
|
if (ret) {
|
|
|
|
BLUFI_ERROR("%s init bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
BLUFI_INFO("BD ADDR: "ESP_BD_ADDR_STR"\n", ESP_BD_ADDR_HEX(esp_bt_dev_get_address()));
|
|
|
|
|
|
|
|
return ESP_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-07-19 06:24:05 -04:00
|
|
|
esp_err_t esp_blufi_gap_register_callback(void)
|
2021-03-31 00:51:48 -04:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
rc = esp_ble_gap_register_callback(esp_blufi_gap_event_handler);
|
|
|
|
if(rc){
|
|
|
|
return rc;
|
|
|
|
}
|
2021-07-19 06:24:05 -04:00
|
|
|
return esp_blufi_profile_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_blufi_host_and_cb_init(esp_blufi_callbacks_t *example_callbacks)
|
|
|
|
{
|
|
|
|
esp_err_t ret = ESP_OK;
|
|
|
|
|
|
|
|
ret = esp_blufi_host_init();
|
|
|
|
if (ret) {
|
|
|
|
BLUFI_ERROR("%s initialise host failed: %s\n", __func__, esp_err_to_name(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = esp_blufi_register_callbacks(example_callbacks);
|
|
|
|
if(ret){
|
|
|
|
BLUFI_ERROR("%s blufi register failed, error code = %x\n", __func__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = esp_blufi_gap_register_callback();
|
|
|
|
if(ret){
|
|
|
|
BLUFI_ERROR("%s gap register failed, error code = %x\n", __func__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ESP_OK;
|
|
|
|
|
2021-03-31 00:51:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_BT_BLUEDROID_ENABLED */
|
|
|
|
|
|
|
|
#ifdef CONFIG_BT_NIMBLE_ENABLED
|
|
|
|
void ble_store_config_init(void);
|
|
|
|
static void blufi_on_reset(int reason)
|
|
|
|
{
|
|
|
|
MODLOG_DFLT(ERROR, "Resetting state; reason=%d\n", reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
blufi_on_sync(void)
|
|
|
|
{
|
|
|
|
esp_blufi_profile_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void bleprph_host_task(void *param)
|
|
|
|
{
|
|
|
|
ESP_LOGI("BLUFI_EXAMPLE", "BLE Host Task Started");
|
|
|
|
/* This function will return only when nimble_port_stop() is executed */
|
|
|
|
nimble_port_run();
|
|
|
|
|
|
|
|
nimble_port_freertos_deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_blufi_host_init(void)
|
|
|
|
{
|
2022-07-10 23:04:44 -04:00
|
|
|
esp_err_t err;
|
|
|
|
err = esp_nimble_init();
|
|
|
|
if (err) {
|
|
|
|
BLUFI_ERROR("%s failed: %s\n", __func__, esp_err_to_name(err));
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
|
2021-03-31 00:51:48 -04:00
|
|
|
/* Initialize the NimBLE host configuration. */
|
|
|
|
ble_hs_cfg.reset_cb = blufi_on_reset;
|
|
|
|
ble_hs_cfg.sync_cb = blufi_on_sync;
|
|
|
|
ble_hs_cfg.gatts_register_cb = esp_blufi_gatt_svr_register_cb;
|
|
|
|
ble_hs_cfg.store_status_cb = ble_store_util_status_rr;
|
|
|
|
|
|
|
|
ble_hs_cfg.sm_io_cap = 4;
|
|
|
|
#ifdef CONFIG_EXAMPLE_BONDING
|
|
|
|
ble_hs_cfg.sm_bonding = 1;
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_EXAMPLE_MITM
|
|
|
|
ble_hs_cfg.sm_mitm = 1;
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_EXAMPLE_USE_SC
|
|
|
|
ble_hs_cfg.sm_sc = 1;
|
|
|
|
#else
|
|
|
|
ble_hs_cfg.sm_sc = 0;
|
|
|
|
#ifdef CONFIG_EXAMPLE_BONDING
|
|
|
|
ble_hs_cfg.sm_our_key_dist = 1;
|
|
|
|
ble_hs_cfg.sm_their_key_dist = 1;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
rc = esp_blufi_gatt_svr_init();
|
|
|
|
assert(rc == 0);
|
|
|
|
|
|
|
|
/* Set the default device name. */
|
|
|
|
rc = ble_svc_gap_device_name_set(BLUFI_DEVICE_NAME);
|
|
|
|
assert(rc == 0);
|
|
|
|
|
|
|
|
/* XXX Need to have template for store */
|
|
|
|
ble_store_config_init();
|
|
|
|
|
|
|
|
esp_blufi_btc_init();
|
2021-07-19 06:24:05 -04:00
|
|
|
|
2022-07-10 23:04:44 -04:00
|
|
|
err = esp_nimble_enable(bleprph_host_task);
|
|
|
|
if (err) {
|
|
|
|
BLUFI_ERROR("%s failed: %s\n", __func__, esp_err_to_name(err));
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
2021-07-19 06:24:05 -04:00
|
|
|
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_blufi_gap_register_callback(void)
|
|
|
|
{
|
2021-03-31 00:51:48 -04:00
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
2021-07-19 06:24:05 -04:00
|
|
|
esp_err_t esp_blufi_host_and_cb_init(esp_blufi_callbacks_t *example_callbacks)
|
2021-03-31 00:51:48 -04:00
|
|
|
{
|
2021-07-19 06:24:05 -04:00
|
|
|
esp_err_t ret = ESP_OK;
|
|
|
|
|
|
|
|
ret = esp_blufi_register_callbacks(example_callbacks);
|
|
|
|
if(ret){
|
|
|
|
BLUFI_ERROR("%s blufi register failed, error code = %x\n", __func__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = esp_blufi_gap_register_callback();
|
|
|
|
if(ret){
|
|
|
|
BLUFI_ERROR("%s gap register failed, error code = %x\n", __func__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = esp_blufi_host_init();
|
|
|
|
if (ret) {
|
|
|
|
BLUFI_ERROR("%s initialise host failed: %s\n", __func__, esp_err_to_name(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2021-03-31 00:51:48 -04:00
|
|
|
}
|
|
|
|
|
2021-07-19 06:24:05 -04:00
|
|
|
|
2021-03-31 00:51:48 -04:00
|
|
|
#endif /* CONFIG_BT_NIMBLE_ENABLED */
|