app_client.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #include "system.h"
  2. #include "app_client.h"
  3. #include "hal_ble_client.h"
  4. #include "hal_ble_host.h"
  5. #include "bsp_time.h"
  6. #include "hal_led.h"
  7. #include "ble_gap.h"
  8. #include "app_host.h"
  9. #include "app_flash.h"
  10. #include "app_client_step.h"
  11. #include "app_client_infomation.h"
  12. #include "app_client_dataupdate.h"
  13. //>> 0xA1: 查询
  14. void cb_BLE_Client_R_UPDATE(void* handle)
  15. {
  16. BLE_Client_Rx_t *target = handle;
  17. uint8_t _cmd = target->pDat[0];
  18. switch(_cmd){
  19. case BLE_Client_R_UPDATE_BASEINFO:{
  20. //>> 0(设备基本信息): 开始时间ms(8)
  21. //<< 0(子命令): 设备型号(64)+左鞋蓝牙地址(6)+硬件版本(2)+软件版本(2)+右鞋蓝牙地址(6)+硬件版本(6)+软件版本(2)
  22. //>> AA 06 F9 A1 00 4A
  23. //<< AA 55 AA A1 00 53 4D 41 52 54 20 53 48 4F 45 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C1 EB D0 E3 87 47 01 00 01 00 00 00 00 00 00 4F
  24. if(mFlash.isHost)
  25. app_host_GetClientInfo(); //申请设备基本信息
  26. else
  27. app_client_infomation_Send();
  28. break;}
  29. case BLE_Client_R_UPDATE_DATA:{
  30. //>> 1(设备数据)
  31. //<< 1(子命令): 左鞋电量(1)+左鞋温度(1)+左鞋压力(4)+左鞋步数(4)+右鞋电量(1)+右鞋温度(1)+右鞋压力(4)+右鞋步数(4)
  32. if(mFlash.isHost)
  33. app_host_GetClientData(20);
  34. else
  35. app_client_DataUpdate_Send();
  36. break;}
  37. case BLE_Client_R_UPDATE_STEPNUM:{
  38. //>> 2(查询步数): 包序号[0全部](2)
  39. //<< 2(查询步数): +开始时间ms(8)+包的数量(2)+包序号(2)+每小时步数(4)+...
  40. app_client_SendStep(target);
  41. break;}
  42. case BLE_Client_R_UPDATE_STEPNUM_CLERA:{
  43. //>> 3(删除步数): 开始时间ms(8)+距离上一个整点的分钟数(1)
  44. //<< 3(删除步数): 开始时间ms(8)+距离上一个整点的分钟数(1)
  45. BLE_Client_Tx_Send(0,BLE_UPDATE,target->pDat,target->datLen);
  46. app_client_DeleteStep(target);
  47. break;}
  48. default:break;
  49. }
  50. }
  51. void app_client_Initialize(void)
  52. {
  53. BLE_Client_Rx_Regist(BLE_UPDATE,cb_BLE_Client_R_UPDATE);
  54. app_client_step_Initialize();
  55. }