bt_spp.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * Project: Arrow
  3. * Author: curiousmuch
  4. */
  5. #include <stdint.h>
  6. #include <string.h>
  7. #include <stdbool.h>
  8. #include <stdio.h>
  9. #include "nvs.h"
  10. #include "nvs_flash.h"
  11. #include "freertos/FreeRTOS.h"
  12. #include "freertos/task.h"
  13. #include "esp_log.h"
  14. #include "esp_bt.h"
  15. #include "esp_bt_main.h"
  16. #include "esp_gap_bt_api.h"
  17. #include "esp_bt_device.h"
  18. #include "esp_spp_api.h"
  19. // TODO: Remove and add call back functions to tie to main
  20. #include "kiss.c"
  21. // Why are these global? Should I move this to a .h settings file?
  22. #define DEVICE_NAME "Arrow"
  23. #define SPP_TAG "BT SPP"
  24. #define SPP_SERVER_NAME "Arrow_TNC"
  25. static const esp_spp_mode_t esp_spp_mode = ESP_SPP_MODE_CB;
  26. static const esp_spp_sec_t sec_mask = ESP_SPP_SEC_AUTHENTICATE;//ESP_SPP_SEC_AUTHENTICATE;
  27. static const esp_spp_role_t role_slave = ESP_SPP_ROLE_SLAVE;
  28. typedef void (* receive_cb_t)(uint8_t *p, uint16_t p_len);
  29. receive_cb_t receive_cb;
  30. void esp_set_rx_cb(void (*rx_cb)(uint8_t *p, uint16_t p_len) )
  31. {
  32. receive_cb = rx_cb;
  33. }
  34. uint32_t handle = 0;
  35. // SPP Callback
  36. static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
  37. {
  38. switch(event) {
  39. case ESP_SPP_INIT_EVT:
  40. // called when SPP initialize
  41. ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_ESP");
  42. esp_bt_dev_set_device_name(DEVICE_NAME);
  43. esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
  44. esp_spp_start_srv(sec_mask, role_slave, 0, SPP_SERVER_NAME);
  45. break;
  46. case ESP_SPP_DISCOVERY_COMP_EVT:
  47. // called with SPP discovery is complete
  48. ESP_LOGI(SPP_TAG, "ESP_SPP_DISCOVERY_COMP_EVT");
  49. break;
  50. case ESP_SPP_OPEN_EVT:
  51. // called when SPP client connection opens
  52. ESP_LOGI(SPP_TAG, "ESP_SPP_OPEN_EVT");
  53. break;
  54. case ESP_SPP_CLOSE_EVT:
  55. // called when SPP client connection closes
  56. ESP_LOGI(SPP_TAG, "ESP_SPP_START_EVT");
  57. break;
  58. case ESP_SPP_CL_INIT_EVT:
  59. // called when SPP client initiated a connection
  60. ESP_LOGI(SPP_TAG, "ESP_SPP_CL_INIT_EVT handle=%d", param->open.handle);
  61. handle = param->open.handle;
  62. break;
  63. case ESP_SPP_DATA_IND_EVT:
  64. // called when SPP connection receives data
  65. ESP_LOGI(SPP_TAG, "ESP_SPP_DATA_IND_EVT len=%d handle=%d", param->data_ind.len, param->data_ind.handle);
  66. //esp_log_buffer_hex("", param->data_ind.data, param->data_ind.len);
  67. kiss_receive(param->data_ind.data, param->data_ind.len);
  68. // [DEBUGING] echo received data
  69. // esp_spp_write(param->data_ind.handle, param->data_ind.len, param->data_ind.data);
  70. break;
  71. case ESP_SPP_CONG_EVT:
  72. // called when SPP connection congestion status changes
  73. ESP_LOGI(SPP_TAG, "ESP_SPP_CONG_EVT");
  74. break;
  75. case ESP_SPP_WRITE_EVT:
  76. // called when SPP write operation completes
  77. ESP_LOGI(SPP_TAG, "ESP_SPP_WRITE_EVT");
  78. // remove the need to write from the write queue
  79. break;
  80. case ESP_SPP_SRV_OPEN_EVT:
  81. // called when SPP server connection opens
  82. ESP_LOGI(SPP_TAG, "ESP_SPP_SRV_OPEN_EVT");
  83. break;
  84. default:
  85. break;
  86. }
  87. }
  88. void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param)
  89. {
  90. switch (event) {
  91. case ESP_BT_GAP_AUTH_CMPL_EVT:{
  92. // called with authentication process complete
  93. if(param->auth_cmpl.stat == ESP_BT_STATUS_SUCCESS) {
  94. ESP_LOGI(SPP_TAG, "authentication success: %s", param->auth_cmpl.device_name);
  95. esp_log_buffer_hex(SPP_TAG, param->auth_cmpl.bda, ESP_BD_ADDR_LEN);
  96. } else {
  97. ESP_LOGE(SPP_TAG, "authentication failed, status:%d", param->auth_cmpl.stat);
  98. }
  99. break;
  100. }
  101. case ESP_BT_GAP_PIN_REQ_EVT:{
  102. // called when legacy pairing pin code requested
  103. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_PIN_REQ_EVT min_16_digit:%d", param->pin_req.min_16_digit);
  104. if (param->pin_req.min_16_digit) {
  105. ESP_LOGI(SPP_TAG, "Input pin code: 0000 0000 0000 0000");
  106. esp_bt_pin_code_t pin_code = {0};
  107. esp_bt_gap_pin_reply(param->pin_req.bda, true, 16, pin_code);
  108. } else {
  109. ESP_LOGI(SPP_TAG, "Input pin code: 1234");
  110. esp_bt_pin_code_t pin_code;
  111. pin_code[0] = '1';
  112. pin_code[1] = '2';
  113. pin_code[2] = '3';
  114. pin_code[3] = '4';
  115. esp_bt_gap_pin_reply(param->pin_req.bda, true, 4, pin_code);
  116. }
  117. break;
  118. }
  119. case ESP_BT_GAP_CFM_REQ_EVT:
  120. // called for simple pairing user confirmation
  121. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_CFM_REQ_EVT Please compare the numeric value: %d", param->cfm_req.num_val);
  122. esp_bt_gap_ssp_confirm_reply(param->cfm_req.bda, true);
  123. break;
  124. case ESP_BT_GAP_KEY_NOTIF_EVT:
  125. // called during simple pairing passkey notification
  126. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_KEY_NOTIF_EVT passkey:%d", param->key_notif.passkey);
  127. break;
  128. case ESP_BT_GAP_KEY_REQ_EVT:
  129. // called during simple pairing passkey request
  130. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_KEY_REQ_EVT Please enter passkey!");
  131. break;
  132. default:
  133. ESP_LOGI(SPP_TAG, "event: %d", event);
  134. break;
  135. }
  136. return;
  137. }
  138. void bt_spp_tx(uint8_t *buf, uint32_t len)
  139. {
  140. esp_spp_write(handle, len, buf);
  141. }
  142. void bt_spp_init(void)
  143. {
  144. // Bluetooth Controller Initialization
  145. ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_BLE));
  146. esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
  147. esp_err_t ret;
  148. if ((ret = esp_bt_controller_init(&bt_cfg)) != ESP_OK) {
  149. ESP_LOGE(SPP_TAG, "%s initialize controller failed: %s\n", __func__, esp_err_to_name(ret));
  150. return;
  151. }
  152. if ((ret = esp_bt_controller_enable(ESP_BT_MODE_CLASSIC_BT)) != ESP_OK) {
  153. ESP_LOGE(SPP_TAG, "%s enable controller failed: %s\n", __func__, esp_err_to_name(ret));
  154. return;
  155. }
  156. // Bluetooth Stack Initialization
  157. if ((ret = esp_bluedroid_init()) != ESP_OK) {
  158. ESP_LOGE(SPP_TAG, "%s initialize bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
  159. return;
  160. }
  161. if ((ret = esp_bluedroid_enable()) != ESP_OK) {
  162. ESP_LOGE(SPP_TAG, "%s enable bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
  163. return;
  164. }
  165. // Set Bluetooth GAT Callback
  166. if ((ret = esp_bt_gap_register_callback(esp_bt_gap_cb)) != ESP_OK) {
  167. ESP_LOGE(SPP_TAG, "%s gap register failed: %s\n", __func__, esp_err_to_name(ret));
  168. return;
  169. }
  170. // Set Bluetooth SPP Callback
  171. if ((ret = esp_spp_register_callback(esp_spp_cb)) != ESP_OK) {
  172. ESP_LOGE(SPP_TAG, "%s spp register failed: %s\n", __func__, esp_err_to_name(ret));
  173. return;
  174. }
  175. if ((ret = esp_spp_init(esp_spp_mode)) != ESP_OK) {
  176. ESP_LOGE(SPP_TAG, "%s spp init failed: %s\n", __func__, esp_err_to_name(ret));
  177. return;
  178. }
  179. esp_bt_sp_param_t param_type = ESP_BT_SP_IOCAP_MODE;
  180. esp_bt_io_cap_t iocap = ESP_BT_IO_CAP_IO;
  181. esp_bt_gap_set_security_param(param_type, &iocap, sizeof(uint8_t));
  182. /*
  183. * Set default parameters for Legacy Pairing
  184. * Use variable pin, input pin code when pairing
  185. */
  186. esp_bt_pin_type_t pin_type = ESP_BT_PIN_TYPE_VARIABLE;
  187. esp_bt_pin_code_t pin_code;
  188. esp_bt_gap_set_pin(pin_type, 0, pin_code);
  189. }