app_client.c 2.0 KB

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