aicare_profile.c 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. #include "aicare_profile.h"
  2. /*
  3. * INCLUDES (包含头文件)
  4. */
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include "co_printf.h"
  8. #include "gap_api.h"
  9. #include "gatt_api.h"
  10. #include "gatt_sig_uuid.h"
  11. #include "co_log.h"
  12. #include "aicare_handler.h"
  13. /*
  14. * MACROS (宏定义)
  15. */
  16. /*
  17. * CONSTANTS (常量定义)
  18. */
  19. static uint8_t user_ntf_enable_flag=0;
  20. // Simple GATT Profile Service UUID: 0xFFE0
  21. const static uint8_t user_svc_uuid[] = AICARE_SVC_UUID;
  22. /******************************* Characteristic 1 defination *******************************/
  23. // Characteristic 1 UUID: 0xFFE1
  24. // Characteristic 1 data
  25. #define AICARE_CHAR1_VALUE_LEN 600
  26. #define AICARE_CHAR2_VALUE_LEN 600
  27. static uint8_t user_char1_value[AICARE_CHAR1_VALUE_LEN] = {0};
  28. //Characteristic 1 User Description
  29. #define AICARE_CHAR1_DESC_LEN 6
  30. #define AICARE_CHAR_CCC_LEN 2
  31. /*
  32. * TYPEDEFS (类型定义)
  33. */
  34. /*
  35. * GLOBAL VARIABLES (全局变量)
  36. */
  37. static uint8_t aicare_svc_id = 0;
  38. static uint8_t conn_svc_idx = 0;
  39. /*
  40. * LOCAL VARIABLES (本地变量)
  41. */
  42. static gatt_service_t aicare_profile_svc;
  43. /*********************************************************************
  44. * Profile Attributes - Table
  45. * 每一项都是一个attribute的定义。
  46. * 第一个attribute为Service 的的定义。
  47. * 每一个特征值(characteristic)的定义,都至少包含三个attribute的定义;
  48. * 1. 特征值声明(Characteristic Declaration)
  49. * 2. 特征值的值(Characteristic value)
  50. * 3. 特征值描述符(Characteristic description)
  51. * 如果有notification 或者indication 的功能,则会包含四个attribute的定义,除了前面定义的三个,还会有一个特征值客户端配置(client characteristic configuration)。
  52. *
  53. */
  54. const gatt_attribute_t aicare_profile_att_table[AICARE_IDX_NB] =
  55. {
  56. // userr gatt Service Declaration
  57. [AICARE_IDX_SERVICE]={
  58. { UUID_SIZE_2, UUID16_ARR(GATT_PRIMARY_SERVICE_UUID) }, /* UUID */
  59. GATT_PROP_READ, /* Permissions */
  60. UUID_SIZE_16, /* Max size of the value */ /* Service UUID size in service declaration */
  61. (uint8_t*)user_svc_uuid, /* Value of the attribute */ /* Service UUID value in service declaration */
  62. },
  63. // Characteristic 1 Declaration
  64. [AICARE_IDX_CHAR1_DECLARATION] = {
  65. { UUID_SIZE_2, UUID16_ARR(GATT_CHARACTER_UUID) }, /* UUID */
  66. GATT_PROP_READ, /* Permissions */
  67. 0, /* Max size of the value */
  68. NULL, /* Value of the attribute */
  69. },
  70. // Characteristic 1 Value
  71. [AICARE_IDX_CHAR1_VALUE] = {
  72. { UUID_SIZE_16,AICARE_CHAR1_UUID }, /* UUID */
  73. GATT_PROP_WRITE, /* Permissions */ /* Permissions */
  74. AICARE_CHAR1_VALUE_LEN, /* Max size of the value */
  75. NULL, /* Value of the attribute */ /* Can assign a buffer here, or can be assigned in the application by user */
  76. },
  77. // Characteristic 2 Declaration
  78. [AICARE_IDX_CHAR2_DECLARATION] = {
  79. { UUID_SIZE_2, UUID16_ARR(GATT_CHARACTER_UUID) }, /* UUID */
  80. GATT_PROP_READ, /* Permissions */
  81. 0, /* Max size of the value */
  82. NULL, /* Value of the attribute */
  83. },
  84. // Characteristic 2 Value
  85. [AICARE_IDX_CHAR2_VALUE] = {
  86. { UUID_SIZE_16,AICARE_CHAR2_UUID }, /* UUID */
  87. GATT_PROP_READ|GATT_PROP_NOTI, /* Permissions */ /* Permissions */
  88. AICARE_CHAR2_VALUE_LEN, /* Max size of the value */
  89. NULL, /* Value of the attribute */ /* Can assign a buffer here, or can be assigned in the application by user */
  90. },
  91. // Characteristic 2 client characteristic configuration
  92. [AICARE_IDX_CHAR2_CFG] = {
  93. { UUID_SIZE_2, UUID16_ARR(GATT_CLIENT_CHAR_CFG_UUID) }, /* UUID */
  94. GATT_PROP_READ | GATT_PROP_WRITE, /* Permissions */
  95. 0, /* Max size of the value */
  96. NULL, /* Value of the attribute */ /* Can assign a buffer here, or can be assigned in the application by user */
  97. },
  98. };
  99. void aicare_send_notify(uint8_t *p_data,uint16_t len)
  100. {
  101. // if(user_ntf_enable_flag)
  102. {
  103. gatt_ntf_t ntf_att;
  104. ntf_att.att_idx = AICARE_IDX_CHAR2_VALUE;
  105. ntf_att.conidx = conn_svc_idx;
  106. ntf_att.svc_id = aicare_svc_id;
  107. ntf_att.data_len = len ;
  108. ntf_att.p_data = p_data;
  109. gatt_notification(ntf_att);
  110. }
  111. }
  112. /*********************************************************************
  113. * @fn aicare_gatt_read_cb
  114. *
  115. * @brief Simple Profile user application handles read request in this callback.
  116. * 应用层在这个回调函数里面处理读的请求。
  117. *
  118. * @param p_read - the pointer to read buffer. NOTE: It's just a pointer from lower layer, please create the buffer in application layer.
  119. * 指向读缓冲区的指针。 请注意这只是一个指针,请在应用程序中分配缓冲区. 为输出函数, 因此为指针的指针.
  120. * len - the pointer to the length of read buffer. Application to assign it.
  121. * 读缓冲区的长度,用户应用程序去给它赋值.
  122. * att_idx - index of the attribute value in it's attribute table.
  123. * Attribute的偏移量.
  124. *
  125. * @return 读请求的长度.
  126. */
  127. static void aicare_gatt_read_cb(uint8_t *p_read, uint16_t *len, uint16_t att_idx)
  128. {
  129. switch (att_idx)
  130. {
  131. case AICARE_IDX_CHAR1_VALUE:
  132. break;
  133. case AICARE_IDX_CHAR2_VALUE:
  134. break;
  135. default:
  136. break;
  137. }
  138. co_printf("\r\n Read request idx:%d \r\n", att_idx);
  139. }
  140. /*********************************************************************
  141. * @fn aicare_gatt_write_cb
  142. *
  143. * @brief Simple Profile user application handles write request in this callback.
  144. * 应用层在这个回调函数里面处理写的请求。
  145. *
  146. * @param write_buf - the buffer for write
  147. * 写操作的数据.
  148. *
  149. * len - the length of write buffer.
  150. * 写缓冲区的长度.
  151. * att_idx - index of the attribute value in it's attribute table.
  152. * Attribute的偏移量.
  153. *
  154. * @return 写请求的长度.GATT_PROP_NOTI
  155. */
  156. static void aicare_gatt_write_cb(uint8_t *write_buf, uint16_t len, uint16_t att_idx)
  157. {
  158. co_printf("\r\n Write request idx:%d \r\n", att_idx);
  159. switch(att_idx)
  160. {
  161. case AICARE_IDX_CHAR1_VALUE:
  162. show_reg(write_buf,len,1);
  163. aicare_app_data_recv(write_buf,len);
  164. //
  165. break;
  166. case AICARE_IDX_CHAR2_VALUE:
  167. show_reg(write_buf,len,1);
  168. break;
  169. case AICARE_IDX_CHAR2_CFG:
  170. co_printf("AICARE_IDX_CHAR2_CFG\r\n");
  171. show_reg(write_buf,len,1);
  172. break;
  173. }
  174. }
  175. /*********************************************************************
  176. * @fn aicare_gatt_msg_handler
  177. *
  178. * @brief Simple Profile callback funtion for GATT messages. GATT read/write
  179. * operations are handeled here.
  180. *
  181. * @param p_msg - GATT messages from GATT layer.
  182. *
  183. * @return uint16_t - Length of handled message.
  184. */
  185. static uint16_t aicare_gatt_msg_handler(gatt_msg_t *p_msg)
  186. {
  187. co_printf("\r\naicare_gatt_msg_handler evt:%d conn_idx:%d\r\n",p_msg->msg_evt,p_msg->conn_idx);
  188. conn_svc_idx = p_msg->conn_idx;
  189. switch(p_msg->msg_evt)
  190. {
  191. case GATTC_MSG_READ_REQ:
  192. aicare_gatt_read_cb((uint8_t *)(p_msg->param.msg.p_msg_data), &(p_msg->param.msg.msg_len), p_msg->att_idx);
  193. break;
  194. case GATTC_MSG_WRITE_REQ:
  195. aicare_gatt_write_cb((uint8_t*)(p_msg->param.msg.p_msg_data), (p_msg->param.msg.msg_len), p_msg->att_idx);
  196. break;
  197. case GATTC_MSG_NTF_REQ:
  198. user_ntf_enable_flag=0;
  199. break;
  200. default:
  201. break;
  202. }
  203. return p_msg->param.msg.msg_len;
  204. }
  205. void aicare_gatt_add_service(void)
  206. {
  207. aicare_profile_svc.p_att_tb = aicare_profile_att_table;
  208. aicare_profile_svc.att_nb = AICARE_IDX_NB;
  209. aicare_profile_svc.gatt_msg_handler = aicare_gatt_msg_handler;
  210. aicare_svc_id = gatt_add_service(&aicare_profile_svc);
  211. co_printf("aicare_svc_id:%d",aicare_svc_id);
  212. }