bt_spp.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. // SPP Callback
  35. static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
  36. {
  37. switch(event) {
  38. case ESP_SPP_INIT_EVT:
  39. // called when SPP initialize
  40. ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_ESP");
  41. esp_bt_dev_set_device_name(DEVICE_NAME);
  42. esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
  43. esp_spp_start_srv(sec_mask, role_slave, 0, SPP_SERVER_NAME);
  44. break;
  45. case ESP_SPP_DISCOVERY_COMP_EVT:
  46. // called with SPP discovery is complete
  47. ESP_LOGI(SPP_TAG, "ESP_SPP_DISCOVERY_COMP_EVT");
  48. break;
  49. case ESP_SPP_OPEN_EVT:
  50. // called when SPP client connection opens
  51. ESP_LOGI(SPP_TAG, "ESP_SPP_OPEN_EVT");
  52. break;
  53. case ESP_SPP_CLOSE_EVT:
  54. // called when SPP client connection closes
  55. ESP_LOGI(SPP_TAG, "ESP_SPP_START_EVT");
  56. break;
  57. case ESP_SPP_CL_INIT_EVT:
  58. // called when SPP client initiated a connection
  59. ESP_LOGI(SPP_TAG, "ESP_SPP_CL_INIT_EVT");
  60. break;
  61. case ESP_SPP_DATA_IND_EVT:
  62. // called when SPP connection receives data
  63. ESP_LOGI(SPP_TAG, "ESP_SPP_DATA_IND_EVT len=%d handle=%d", param->data_ind.len, param->data_ind.handle);
  64. //esp_log_buffer_hex("", param->data_ind.data, param->data_ind.len);
  65. kiss_receive(param->data_ind.data, param->data_ind.len);
  66. // [DEBUGING] echo received data
  67. // esp_spp_write(param->data_ind.handle, param->data_ind.len, param->data_ind.data);
  68. break;
  69. case ESP_SPP_CONG_EVT:
  70. // called when SPP connection congestion status changes
  71. ESP_LOGI(SPP_TAG, "ESP_SPP_CONG_EVT");
  72. break;
  73. case ESP_SPP_WRITE_EVT:
  74. // called when SPP write operation completes
  75. ESP_LOGI(SPP_TAG, "ESP_SPP_WRITE_EVT");
  76. // remove the need to write from the write queue
  77. break;
  78. case ESP_SPP_SRV_OPEN_EVT:
  79. // called when SPP server connection opens
  80. ESP_LOGI(SPP_TAG, "ESP_SPP_SRV_OPEN_EVT");
  81. break;
  82. default:
  83. break;
  84. }
  85. }
  86. void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param)
  87. {
  88. switch (event) {
  89. case ESP_BT_GAP_AUTH_CMPL_EVT:{
  90. // called with authentication process complete
  91. if(param->auth_cmpl.stat == ESP_BT_STATUS_SUCCESS) {
  92. ESP_LOGI(SPP_TAG, "authentication success: %s", param->auth_cmpl.device_name);
  93. esp_log_buffer_hex(SPP_TAG, param->auth_cmpl.bda, ESP_BD_ADDR_LEN);
  94. } else {
  95. ESP_LOGE(SPP_TAG, "authentication failed, status:%d", param->auth_cmpl.stat);
  96. }
  97. break;
  98. }
  99. case ESP_BT_GAP_PIN_REQ_EVT:{
  100. // called when legacy pairing pin code requested
  101. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_PIN_REQ_EVT min_16_digit:%d", param->pin_req.min_16_digit);
  102. if (param->pin_req.min_16_digit) {
  103. ESP_LOGI(SPP_TAG, "Input pin code: 0000 0000 0000 0000");
  104. esp_bt_pin_code_t pin_code = {0};
  105. esp_bt_gap_pin_reply(param->pin_req.bda, true, 16, pin_code);
  106. } else {
  107. ESP_LOGI(SPP_TAG, "Input pin code: 1234");
  108. esp_bt_pin_code_t pin_code;
  109. pin_code[0] = '1';
  110. pin_code[1] = '2';
  111. pin_code[2] = '3';
  112. pin_code[3] = '4';
  113. esp_bt_gap_pin_reply(param->pin_req.bda, true, 4, pin_code);
  114. }
  115. break;
  116. }
  117. case ESP_BT_GAP_CFM_REQ_EVT:
  118. // called for simple pairing user confirmation
  119. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_CFM_REQ_EVT Please compare the numeric value: %d", param->cfm_req.num_val);
  120. esp_bt_gap_ssp_confirm_reply(param->cfm_req.bda, true);
  121. break;
  122. case ESP_BT_GAP_KEY_NOTIF_EVT:
  123. // called during simple pairing passkey notification
  124. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_KEY_NOTIF_EVT passkey:%d", param->key_notif.passkey);
  125. break;
  126. case ESP_BT_GAP_KEY_REQ_EVT:
  127. // called during simple pairing passkey request
  128. ESP_LOGI(SPP_TAG, "ESP_BT_GAP_KEY_REQ_EVT Please enter passkey!");
  129. break;
  130. default:
  131. ESP_LOGI(SPP_TAG, "event: %d", event);
  132. break;
  133. }
  134. return;
  135. }
  136. void bt_spp_init(void)
  137. {
  138. // Bluetooth Controller Initialization
  139. ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_BLE));
  140. esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
  141. esp_err_t ret;
  142. if ((ret = esp_bt_controller_init(&bt_cfg)) != ESP_OK) {
  143. ESP_LOGE(SPP_TAG, "%s initialize controller failed: %s\n", __func__, esp_err_to_name(ret));
  144. return;
  145. }
  146. if ((ret = esp_bt_controller_enable(ESP_BT_MODE_CLASSIC_BT)) != ESP_OK) {
  147. ESP_LOGE(SPP_TAG, "%s enable controller failed: %s\n", __func__, esp_err_to_name(ret));
  148. return;
  149. }
  150. // Bluetooth Stack Initialization
  151. if ((ret = esp_bluedroid_init()) != ESP_OK) {
  152. ESP_LOGE(SPP_TAG, "%s initialize bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
  153. return;
  154. }
  155. if ((ret = esp_bluedroid_enable()) != ESP_OK) {
  156. ESP_LOGE(SPP_TAG, "%s enable bluedroid failed: %s\n", __func__, esp_err_to_name(ret));
  157. return;
  158. }
  159. // Set Bluetooth GAT Callback
  160. if ((ret = esp_bt_gap_register_callback(esp_bt_gap_cb)) != ESP_OK) {
  161. ESP_LOGE(SPP_TAG, "%s gap register failed: %s\n", __func__, esp_err_to_name(ret));
  162. return;
  163. }
  164. // Set Bluetooth SPP Callback
  165. if ((ret = esp_spp_register_callback(esp_spp_cb)) != ESP_OK) {
  166. ESP_LOGE(SPP_TAG, "%s spp register failed: %s\n", __func__, esp_err_to_name(ret));
  167. return;
  168. }
  169. if ((ret = esp_spp_init(esp_spp_mode)) != ESP_OK) {
  170. ESP_LOGE(SPP_TAG, "%s spp init failed: %s\n", __func__, esp_err_to_name(ret));
  171. return;
  172. }
  173. esp_bt_sp_param_t param_type = ESP_BT_SP_IOCAP_MODE;
  174. esp_bt_io_cap_t iocap = ESP_BT_IO_CAP_IO;
  175. esp_bt_gap_set_security_param(param_type, &iocap, sizeof(uint8_t));
  176. /*
  177. * Set default parameters for Legacy Pairing
  178. * Use variable pin, input pin code when pairing
  179. */
  180. esp_bt_pin_type_t pin_type = ESP_BT_PIN_TYPE_VARIABLE;
  181. esp_bt_pin_code_t pin_code;
  182. esp_bt_gap_set_pin(pin_type, 0, pin_code);
  183. }