bt_spp.c 6.3 KB

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