2018-01-15 11:47:23 +00:00
|
|
|
/*
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
2016-11-04 18:48:16 +00:00
|
|
|
|
2018-01-15 11:47:23 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
2016-11-04 18:48:16 +00:00
|
|
|
|
2016-09-22 13:15:54 +00:00
|
|
|
#include <stdio.h>
|
2017-04-05 13:19:15 +00:00
|
|
|
#include <string.h>
|
2016-09-22 13:15:54 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
2017-12-07 13:48:27 +00:00
|
|
|
#include "esp_bt.h"
|
2017-04-05 13:19:15 +00:00
|
|
|
#include "esp_log.h"
|
2017-07-13 15:46:19 +00:00
|
|
|
#include "nvs_flash.h"
|
2017-04-05 13:19:15 +00:00
|
|
|
|
|
|
|
static const char *tag = "BLE_ADV";
|
2016-09-22 13:15:54 +00:00
|
|
|
|
|
|
|
#define HCI_H4_CMD_PREAMBLE_SIZE (4)
|
|
|
|
|
|
|
|
/* HCI Command opcode group field(OGF) */
|
|
|
|
#define HCI_GRP_HOST_CONT_BASEBAND_CMDS (0x03 << 10) /* 0x0C00 */
|
|
|
|
#define HCI_GRP_BLE_CMDS (0x08 << 10)
|
|
|
|
|
|
|
|
#define HCI_RESET (0x0003 | HCI_GRP_HOST_CONT_BASEBAND_CMDS)
|
|
|
|
#define HCI_BLE_WRITE_ADV_ENABLE (0x000A | HCI_GRP_BLE_CMDS)
|
|
|
|
#define HCI_BLE_WRITE_ADV_PARAMS (0x0006 | HCI_GRP_BLE_CMDS)
|
|
|
|
#define HCI_BLE_WRITE_ADV_DATA (0x0008 | HCI_GRP_BLE_CMDS)
|
|
|
|
|
|
|
|
#define HCIC_PARAM_SIZE_WRITE_ADV_ENABLE (1)
|
|
|
|
#define HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS (15)
|
|
|
|
#define HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA (31)
|
|
|
|
|
|
|
|
#define BD_ADDR_LEN (6) /* Device address length */
|
|
|
|
typedef uint8_t bd_addr_t[BD_ADDR_LEN]; /* Device address */
|
|
|
|
|
|
|
|
#define UINT16_TO_STREAM(p, u16) {*(p)++ = (uint8_t)(u16); *(p)++ = (uint8_t)((u16) >> 8);}
|
|
|
|
#define UINT8_TO_STREAM(p, u8) {*(p)++ = (uint8_t)(u8);}
|
|
|
|
#define BDADDR_TO_STREAM(p, a) {int ijk; for (ijk = 0; ijk < BD_ADDR_LEN; ijk++) *(p)++ = (uint8_t) a[BD_ADDR_LEN - 1 - ijk];}
|
|
|
|
#define ARRAY_TO_STREAM(p, a, len) {int ijk; for (ijk = 0; ijk < len; ijk++) *(p)++ = (uint8_t) a[ijk];}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
H4_TYPE_COMMAND = 1,
|
|
|
|
H4_TYPE_ACL = 2,
|
|
|
|
H4_TYPE_SCO = 3,
|
|
|
|
H4_TYPE_EVENT = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint8_t hci_cmd_buf[128];
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
/*
|
2016-09-22 13:15:54 +00:00
|
|
|
* @brief: BT controller callback function, used to notify the upper layer that
|
|
|
|
* controller is ready to receive command
|
|
|
|
*/
|
|
|
|
static void controller_rcv_pkt_ready(void)
|
|
|
|
{
|
|
|
|
printf("controller rcv pkt ready\n");
|
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
/*
|
2016-09-22 13:15:54 +00:00
|
|
|
* @brief: BT controller callback function, to transfer data packet to upper
|
|
|
|
* controller is ready to receive command
|
|
|
|
*/
|
|
|
|
static int host_rcv_pkt(uint8_t *data, uint16_t len)
|
|
|
|
{
|
|
|
|
printf("host rcv pkt: ");
|
2016-11-24 18:10:15 +00:00
|
|
|
for (uint16_t i = 0; i < len; i++) {
|
2016-09-22 13:15:54 +00:00
|
|
|
printf("%02x", data[i]);
|
2016-11-24 18:10:15 +00:00
|
|
|
}
|
2016-09-22 13:15:54 +00:00
|
|
|
printf("\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-03 07:53:06 +00:00
|
|
|
static esp_vhci_host_callback_t vhci_host_cb = {
|
2016-09-22 13:15:54 +00:00
|
|
|
controller_rcv_pkt_ready,
|
|
|
|
host_rcv_pkt
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint16_t make_cmd_reset(uint8_t *buf)
|
|
|
|
{
|
|
|
|
UINT8_TO_STREAM (buf, H4_TYPE_COMMAND);
|
|
|
|
UINT16_TO_STREAM (buf, HCI_RESET);
|
|
|
|
UINT8_TO_STREAM (buf, 0);
|
|
|
|
return HCI_H4_CMD_PREAMBLE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t make_cmd_ble_set_adv_enable (uint8_t *buf, uint8_t adv_enable)
|
|
|
|
{
|
|
|
|
UINT8_TO_STREAM (buf, H4_TYPE_COMMAND);
|
|
|
|
UINT16_TO_STREAM (buf, HCI_BLE_WRITE_ADV_ENABLE);
|
|
|
|
UINT8_TO_STREAM (buf, HCIC_PARAM_SIZE_WRITE_ADV_ENABLE);
|
|
|
|
UINT8_TO_STREAM (buf, adv_enable);
|
|
|
|
return HCI_H4_CMD_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_ADV_ENABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t make_cmd_ble_set_adv_param (uint8_t *buf, uint16_t adv_int_min, uint16_t adv_int_max,
|
2016-11-24 18:10:15 +00:00
|
|
|
uint8_t adv_type, uint8_t addr_type_own,
|
|
|
|
uint8_t addr_type_dir, bd_addr_t direct_bda,
|
|
|
|
uint8_t channel_map, uint8_t adv_filter_policy)
|
2016-09-22 13:15:54 +00:00
|
|
|
{
|
|
|
|
UINT8_TO_STREAM (buf, H4_TYPE_COMMAND);
|
|
|
|
UINT16_TO_STREAM (buf, HCI_BLE_WRITE_ADV_PARAMS);
|
|
|
|
UINT8_TO_STREAM (buf, HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS );
|
|
|
|
|
|
|
|
UINT16_TO_STREAM (buf, adv_int_min);
|
|
|
|
UINT16_TO_STREAM (buf, adv_int_max);
|
|
|
|
UINT8_TO_STREAM (buf, adv_type);
|
|
|
|
UINT8_TO_STREAM (buf, addr_type_own);
|
|
|
|
UINT8_TO_STREAM (buf, addr_type_dir);
|
|
|
|
BDADDR_TO_STREAM (buf, direct_bda);
|
|
|
|
UINT8_TO_STREAM (buf, channel_map);
|
|
|
|
UINT8_TO_STREAM (buf, adv_filter_policy);
|
|
|
|
return HCI_H4_CMD_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint16_t make_cmd_ble_set_adv_data(uint8_t *buf, uint8_t data_len, uint8_t *p_data)
|
|
|
|
{
|
|
|
|
UINT8_TO_STREAM (buf, H4_TYPE_COMMAND);
|
|
|
|
UINT16_TO_STREAM (buf, HCI_BLE_WRITE_ADV_DATA);
|
|
|
|
UINT8_TO_STREAM (buf, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1);
|
|
|
|
|
|
|
|
memset(buf, 0, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA);
|
|
|
|
|
|
|
|
if (p_data != NULL && data_len > 0) {
|
2016-09-23 02:48:55 +00:00
|
|
|
if (data_len > HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA) {
|
2016-09-22 13:15:54 +00:00
|
|
|
data_len = HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA;
|
2016-09-23 02:48:55 +00:00
|
|
|
}
|
2016-09-22 13:15:54 +00:00
|
|
|
|
|
|
|
UINT8_TO_STREAM (buf, data_len);
|
|
|
|
|
|
|
|
ARRAY_TO_STREAM (buf, p_data, data_len);
|
|
|
|
}
|
|
|
|
return HCI_H4_CMD_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hci_cmd_send_reset(void)
|
|
|
|
{
|
|
|
|
uint16_t sz = make_cmd_reset (hci_cmd_buf);
|
2017-01-03 07:53:06 +00:00
|
|
|
esp_vhci_host_send_packet(hci_cmd_buf, sz);
|
2016-09-22 13:15:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hci_cmd_send_ble_adv_start(void)
|
|
|
|
{
|
|
|
|
uint16_t sz = make_cmd_ble_set_adv_enable (hci_cmd_buf, 1);
|
2017-01-03 07:53:06 +00:00
|
|
|
esp_vhci_host_send_packet(hci_cmd_buf, sz);
|
2016-09-22 13:15:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hci_cmd_send_ble_set_adv_param(void)
|
|
|
|
{
|
|
|
|
uint16_t adv_intv_min = 256; // 160ms
|
|
|
|
uint16_t adv_intv_max = 256; // 160ms
|
|
|
|
uint8_t adv_type = 0; // connectable undirected advertising (ADV_IND)
|
|
|
|
uint8_t own_addr_type = 0; // Public Device Address
|
|
|
|
uint8_t peer_addr_type = 0; // Public Device Address
|
|
|
|
uint8_t peer_addr[6] = {0x80, 0x81, 0x82, 0x83, 0x84, 0x85};
|
|
|
|
uint8_t adv_chn_map = 0x07; // 37, 38, 39
|
|
|
|
uint8_t adv_filter_policy = 0; // Process All Conn and Scan
|
2016-11-24 18:10:15 +00:00
|
|
|
|
2016-09-22 13:15:54 +00:00
|
|
|
uint16_t sz = make_cmd_ble_set_adv_param(hci_cmd_buf,
|
2016-11-24 18:10:15 +00:00
|
|
|
adv_intv_min,
|
|
|
|
adv_intv_max,
|
|
|
|
adv_type,
|
|
|
|
own_addr_type,
|
|
|
|
peer_addr_type,
|
|
|
|
peer_addr,
|
|
|
|
adv_chn_map,
|
|
|
|
adv_filter_policy);
|
2017-01-03 07:53:06 +00:00
|
|
|
esp_vhci_host_send_packet(hci_cmd_buf, sz);
|
2016-09-22 13:15:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hci_cmd_send_ble_set_adv_data(void)
|
|
|
|
{
|
|
|
|
char *adv_name = "ESP-BLE-HELLO";
|
|
|
|
uint8_t name_len = (uint8_t)strlen(adv_name);
|
|
|
|
uint8_t adv_data[31] = {0x02, 0x01, 0x06, 0x0, 0x09};
|
|
|
|
uint8_t adv_data_len;
|
2016-11-24 18:10:15 +00:00
|
|
|
|
2016-09-22 13:15:54 +00:00
|
|
|
adv_data[3] = name_len + 1;
|
2016-11-24 18:10:15 +00:00
|
|
|
for (int i = 0; i < name_len; i++) {
|
|
|
|
adv_data[5 + i] = (uint8_t)adv_name[i];
|
2016-09-22 13:15:54 +00:00
|
|
|
}
|
|
|
|
adv_data_len = 5 + name_len;
|
|
|
|
|
|
|
|
uint16_t sz = make_cmd_ble_set_adv_data(hci_cmd_buf, adv_data_len, (uint8_t *)adv_data);
|
2017-01-03 07:53:06 +00:00
|
|
|
esp_vhci_host_send_packet(hci_cmd_buf, sz);
|
2016-09-22 13:15:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @brief: send HCI commands to perform BLE advertising;
|
|
|
|
*/
|
|
|
|
void bleAdvtTask(void *pvParameters)
|
|
|
|
{
|
|
|
|
int cmd_cnt = 0;
|
|
|
|
bool send_avail = false;
|
2017-01-03 07:53:06 +00:00
|
|
|
esp_vhci_host_register_callback(&vhci_host_cb);
|
2016-09-22 13:15:54 +00:00
|
|
|
printf("BLE advt task start\n");
|
|
|
|
while (1) {
|
|
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
2017-01-03 07:53:06 +00:00
|
|
|
send_avail = esp_vhci_host_check_send_available();
|
2016-09-22 13:15:54 +00:00
|
|
|
if (send_avail) {
|
|
|
|
switch (cmd_cnt) {
|
|
|
|
case 0: hci_cmd_send_reset(); ++cmd_cnt; break;
|
|
|
|
case 1: hci_cmd_send_ble_set_adv_param(); ++cmd_cnt; break;
|
|
|
|
case 2: hci_cmd_send_ble_set_adv_data(); ++cmd_cnt; break;
|
|
|
|
case 3: hci_cmd_send_ble_adv_start(); ++cmd_cnt; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("BLE Advertise, flag_send_avail: %d, cmd_sent: %d\n", send_avail, cmd_cnt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-14 04:55:26 +00:00
|
|
|
void app_main()
|
2016-09-22 13:15:54 +00:00
|
|
|
{
|
2017-07-13 15:46:19 +00:00
|
|
|
/* Initialize NVS — it is used to store PHY calibration data */
|
|
|
|
esp_err_t ret = nvs_flash_init();
|
2018-07-25 15:11:09 +00:00
|
|
|
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
2017-07-13 15:46:19 +00:00
|
|
|
ESP_ERROR_CHECK(nvs_flash_erase());
|
|
|
|
ret = nvs_flash_init();
|
|
|
|
}
|
|
|
|
ESP_ERROR_CHECK( ret );
|
2017-04-05 13:19:15 +00:00
|
|
|
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
|
|
|
|
|
2017-09-19 12:10:35 +00:00
|
|
|
ret = esp_bt_controller_mem_release(ESP_BT_MODE_CLASSIC_BT);
|
|
|
|
if (ret) {
|
2018-02-22 13:48:53 +00:00
|
|
|
ESP_LOGI(tag, "Bluetooth controller release classic bt memory failed: %s", esp_err_to_name(ret));
|
2017-09-19 12:10:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:48:53 +00:00
|
|
|
if ((ret = esp_bt_controller_init(&bt_cfg)) != ESP_OK) {
|
|
|
|
ESP_LOGI(tag, "Bluetooth controller initialize failed: %s", esp_err_to_name(ret));
|
2017-04-05 13:19:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-02-17 11:24:58 +00:00
|
|
|
|
2018-02-22 13:48:53 +00:00
|
|
|
if ((ret = esp_bt_controller_enable(ESP_BT_MODE_BLE)) != ESP_OK) {
|
|
|
|
ESP_LOGI(tag, "Bluetooth controller enable failed: %s", esp_err_to_name(ret));
|
2017-02-17 11:24:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-19 12:10:35 +00:00
|
|
|
/*
|
|
|
|
* If call mem release here, also work. Input ESP_BT_MODE_CLASSIC_BT, the function will
|
2017-09-29 02:56:08 +00:00
|
|
|
* release the memory of classic bt mode.
|
2017-09-19 12:10:35 +00:00
|
|
|
* esp_bt_controller_mem_release(ESP_BT_MODE_CLASSIC_BT);
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If call mem release here, also work. Input ESP_BT_MODE_BTDM, the function will calculate
|
|
|
|
* that the BLE mode is already used, so it will release of only classic bt mode.
|
|
|
|
* esp_bt_controller_mem_release(ESP_BT_MODE_BTDM);
|
|
|
|
*/
|
|
|
|
|
2016-09-22 13:15:54 +00:00
|
|
|
xTaskCreatePinnedToCore(&bleAdvtTask, "bleAdvtTask", 2048, NULL, 5, NULL, 0);
|
|
|
|
}
|
|
|
|
|