ble_simple_peripheral.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /**
  2. * Copyright (c) 2019, Freqchip
  3. *
  4. * All rights reserved.
  5. *
  6. *
  7. */
  8. /*
  9. * INCLUDES (包含头文件)
  10. */
  11. #include <stdbool.h>
  12. #include "co_log.h"
  13. #include "gap_api.h"
  14. #include "gatt_api.h"
  15. #include "simple_gatt_service.h"
  16. #include "ble_simple_peripheral.h"
  17. /*
  18. * MACROS (宏定义)
  19. */
  20. #undef LOG_LOCAL_LEVEL
  21. #define LOG_LOCAL_LEVEL (LOG_LEVEL_INFO)
  22. extern const char *app_tag;
  23. /*
  24. * CONSTANTS (常量定义)
  25. */
  26. // GAP - Advertisement data (max size = 31 bytes, though this is
  27. // best kept short to conserve power while advertisting)
  28. // GAP-广播包的内容,最长31个字节.短一点的内容可以节省广播时的系统功耗.
  29. static uint8_t adv_data[] =
  30. {
  31. // service UUID, to notify central devices what services are included
  32. // in this peripheral. 告诉central本机有什么服务, 但这里先只放一个主要的.
  33. 0x03, // length of this data
  34. GAP_ADVTYPE_16BIT_MORE, // some of the UUID's, but not all
  35. 0xFF,
  36. 0xFE,
  37. };
  38. // GAP - Scan response data (max size = 31 bytes, though this is
  39. // best kept short to conserve power while advertisting)
  40. // GAP-Scan response内容,最长31个字节.短一点的内容可以节省广播时的系统功耗.
  41. static uint8_t scan_rsp_data[] =
  42. {
  43. // complete name 设备名字
  44. 0x12, // length of this data
  45. GAP_ADVTYPE_LOCAL_NAME_COMPLETE,
  46. 'S','i','m','p','l','e',' ','P','e','r','i','p','h','e','r','a','l',
  47. // Tx power level 发射功率
  48. 0x02, // length of this data
  49. GAP_ADVTYPE_POWER_LEVEL,
  50. 0, // 0dBm
  51. };
  52. /*
  53. * TYPEDEFS (类型定义)
  54. */
  55. /*
  56. * GLOBAL VARIABLES (全局变量)
  57. */
  58. /*
  59. * LOCAL VARIABLES (本地变量)
  60. */
  61. /*
  62. * LOCAL FUNCTIONS (本地函数)
  63. */
  64. static void sp_start_adv(void);
  65. /*
  66. * EXTERN FUNCTIONS (外部函数)
  67. */
  68. /*
  69. * PUBLIC FUNCTIONS (全局函数)
  70. */
  71. /** @function group ble peripheral device APIs (ble外设相关的API)
  72. * @{
  73. */
  74. /*********************************************************************
  75. * @fn app_gap_evt_cb
  76. *
  77. * @brief Application layer GAP event callback function. Handles GAP evnets.
  78. *
  79. * @param p_event - GAP events from BLE stack.
  80. *
  81. *
  82. * @return None.
  83. */
  84. void app_gap_evt_cb(gap_event_t *p_event)
  85. {
  86. switch(p_event->type)
  87. {
  88. case GAP_EVT_ADV_END:
  89. {
  90. LOG_INFO(app_tag, "adv_end,status:0x%02x\r\n",p_event->param.adv_end.status);
  91. }
  92. break;
  93. case GAP_EVT_ALL_SVC_ADDED:
  94. {
  95. LOG_INFO(app_tag, "All service added\r\n");
  96. sp_start_adv();
  97. }
  98. break;
  99. case GAP_EVT_SLAVE_CONNECT:
  100. {
  101. LOG_INFO(app_tag, "slave[%d],connect. link_num:%d\r\n",p_event->param.slave_connect.conidx,gap_get_connect_num());
  102. }
  103. break;
  104. case GAP_EVT_DISCONNECT:
  105. {
  106. LOG_INFO(app_tag, "Link[%d] disconnect,reason:0x%02X\r\n",p_event->param.disconnect.conidx
  107. ,p_event->param.disconnect.reason);
  108. gap_start_advertising(0);
  109. }
  110. break;
  111. case GAP_EVT_LINK_PARAM_REJECT:
  112. LOG_INFO(app_tag, "Link[%d]param reject,status:0x%02x\r\n"
  113. ,p_event->param.link_reject.conidx,p_event->param.link_reject.status);
  114. break;
  115. case GAP_EVT_LINK_PARAM_UPDATE:
  116. LOG_INFO(app_tag, "Link[%d]param update,interval:%d,latency:%d,timeout:%d\r\n",p_event->param.link_update.conidx
  117. ,p_event->param.link_update.con_interval,p_event->param.link_update.con_latency,p_event->param.link_update.sup_to);
  118. break;
  119. case GAP_EVT_PEER_FEATURE:
  120. LOG_INFO(app_tag, "peer[%d] feats ind\r\n",p_event->param.peer_feature.conidx);
  121. break;
  122. case GAP_EVT_MTU:
  123. LOG_INFO(app_tag, "mtu update,conidx=%d,mtu=%d\r\n"
  124. ,p_event->param.mtu.conidx,p_event->param.mtu.value);
  125. break;
  126. case GAP_EVT_LINK_RSSI:
  127. LOG_INFO(app_tag, "link rssi %d\r\n",p_event->param.link_rssi);
  128. break;
  129. case GAP_SEC_EVT_SLAVE_ENCRYPT:
  130. LOG_INFO(app_tag, "slave[%d]_encrypted\r\n",p_event->param.slave_encrypt_conidx);
  131. break;
  132. default:
  133. break;
  134. }
  135. }
  136. /*********************************************************************
  137. * @fn sp_start_adv
  138. *
  139. * @brief Set advertising data & scan response & advertising parameters and start advertising
  140. *
  141. * @param None.
  142. *
  143. *
  144. * @return None.
  145. */
  146. static void sp_start_adv(void)
  147. {
  148. // Set advertising parameters
  149. gap_adv_param_t adv_param;
  150. adv_param.adv_mode = GAP_ADV_MODE_UNDIRECT;
  151. adv_param.adv_addr_type = GAP_ADDR_TYPE_PUBLIC;
  152. adv_param.adv_chnl_map = GAP_ADV_CHAN_ALL;
  153. adv_param.adv_filt_policy = GAP_ADV_ALLOW_SCAN_ANY_CON_ANY;
  154. adv_param.adv_intv_min = 300;
  155. adv_param.adv_intv_max = 300;
  156. gap_set_advertising_param(&adv_param);
  157. // Set advertising data & scan response data
  158. gap_set_advertising_data(adv_data, sizeof(adv_data));
  159. gap_set_advertising_rsp_data(scan_rsp_data, sizeof(scan_rsp_data));
  160. // Start advertising
  161. LOG_INFO(app_tag, "Start advertising...\r\n");
  162. gap_start_advertising(0);
  163. }
  164. /*********************************************************************
  165. * @fn simple_peripheral_init
  166. *
  167. * @brief Initialize simple peripheral profile, BLE related parameters.
  168. *
  169. * @param None.
  170. *
  171. *
  172. * @return None.
  173. */
  174. void simple_peripheral_init(void)
  175. {
  176. // set local device name
  177. uint8_t local_name[] = "Simple Peripheral";
  178. gap_dev_name_set(local_name, sizeof(local_name));
  179. // Initialize security related settings.
  180. gap_security_param_t param =
  181. {
  182. .mitm = false,
  183. .ble_secure_conn = false,
  184. .io_cap = GAP_IO_CAP_NO_INPUT_NO_OUTPUT,
  185. .pair_init_mode = GAP_PAIRING_MODE_WAIT_FOR_REQ,
  186. .bond_auth = true,
  187. .password = 0,
  188. };
  189. gap_security_param_init(&param);
  190. gap_set_cb_func(app_gap_evt_cb);
  191. mac_addr_t addr;
  192. enum ble_addr_type addr_type;
  193. gap_address_get(&addr, &addr_type);
  194. LOG_INFO(app_tag, "Local BDADDR: 0x%2X%2X%2X%2X%2X%2X\r\n", addr.addr[5], addr.addr[4], addr.addr[3], addr.addr[2], addr.addr[1], addr.addr[0]);
  195. // Adding services to database
  196. sp_gatt_add_service();
  197. }