hal_battery_NoPowerEnPin.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. /*********************************************************************
  2. * INCLUDES
  3. */
  4. #include "usr_config.h"
  5. #include "hal_battery.h"
  6. #include "cli.h"
  7. #include "hal_charge.h"
  8. #include "fml_adc.h"
  9. #include "app_chargerpin_conn_detect.h"
  10. #define PRINTBLE 0
  11. #define IIDUAN 1
  12. #include "ble_comm.h"
  13. #include "exception.h"
  14. #include "ringframe.h"
  15. RINGFRAME_DEF(battlog, ringframe_size_4096);
  16. char logbuftemp[50];
  17. int logbuftemp_len = 0;
  18. #define log(...) {logbuftemp_len = sprintf(logbuftemp,__VA_ARGS__); while(ringframe_in(&battlog,logbuftemp,logbuftemp_len)!=0){ringframe_throw(&battlog);}}
  19. #include "hal_ble_client.h"
  20. char print_log = 0;
  21. void cb_BLE_Client_ERR(void* handle)
  22. {
  23. DEBUG_LOG("cb_BLE_Client_ERR:%d,%d\n", 1, 1);
  24. print_log = 1;
  25. }
  26. battercb_t* battercb = NULL;
  27. void printbatter_cb(battercb_t* c, battercb_t* C_flash)
  28. {
  29. char bytes[256];
  30. int len = 0;
  31. len = sprintf(bytes, "%f,%f,%f,%f,%f,%f,%f,%f,%d,%d,%d,%d\r\n",
  32. c->preBestResult_Voltage2power,
  33. c->preBestResult_chargeV2P_f,
  34. c->P_mAh,
  35. c->kg,
  36. c->P2,
  37. c->P1,
  38. c->Battery_capacity_mAh,
  39. c->adc_tp4056_power,
  40. c->init,
  41. c->sta,
  42. c->chargeV2P_f_init,
  43. c->Voltage2power_init);
  44. SEGGER_RTT_Write(0, bytes, len);
  45. len = sprintf(bytes, "%f,%f,%f,%f,%f,%f,%f,%f,%d,%d,%d,%d\r\n",
  46. C_flash->preBestResult_Voltage2power,
  47. C_flash->preBestResult_chargeV2P_f,
  48. C_flash->P_mAh,
  49. C_flash->kg,
  50. C_flash->P2,
  51. C_flash->P1,
  52. C_flash->Battery_capacity_mAh,
  53. C_flash->adc_tp4056_power,
  54. C_flash->init,
  55. C_flash->sta,
  56. C_flash->chargeV2P_f_init,
  57. C_flash->Voltage2power_init);
  58. SEGGER_RTT_Write(0, bytes, len);
  59. DEBUG_LOG("\r\n");
  60. }
  61. void cb_init(void)
  62. {
  63. battercb = Except_Get_Battery_Record_Buff();
  64. if (battercb->init != 3)
  65. {
  66. battercb->init = 3;
  67. battercb->P1 = 100.0f;
  68. battercb->adc_tp4056_power = 0;
  69. battercb->Battery_capacity_mAh = 0;
  70. battercb->kg = 1;
  71. battercb->P2 = 0;
  72. battercb->preBestResult_chargeV2P_f = 0;
  73. battercb->preBestResult_Voltage2power = 0;
  74. battercb->sta = 0;
  75. battercb->P_mAh = 0;
  76. battercb->Voltage2power_init = 1;
  77. battercb->chargeV2P_f_init = 1;
  78. }
  79. }
  80. //返回5V信号,有5V的话返回1,没有的话返回0
  81. static char charge_in(void)
  82. {
  83. if (nrf_gpio_pin_read(PIN_CHARGING))
  84. {
  85. return 1;
  86. }
  87. else
  88. {
  89. return 0;
  90. }
  91. }
  92. static float filter(float value, float kg, float* preBestResult)
  93. {
  94. float new_v = value;
  95. new_v = *preBestResult * (1.0f - kg) + value * kg;
  96. *preBestResult = new_v;
  97. return new_v;
  98. }
  99. #if IIDUAN == 0
  100. //鞋子ADC
  101. static const float poo1o[] = { 0, 0, 0.0279893723606430, 0.174605323652602, 0.325796538285416, 0.495164949358988, 0.661918800578876, 0.829024800123971, 1.00225498989324, 1.17936073685608, 1.37258677752597, 1.56525700069634, 1.78680072433224, 2.00361106262195, 2.24466616203811, 2.46699160701705, 2.77834696254638, 3.12186809827754, 3.58442625993982, 4.15025435558636, 4.75855743544068, 5.51189718744822, 6.35834306864975, 7.38461196888009, 8.48997478633724, 9.43096936165977, 10.3817319764220, 11.4116388420216, 12.3939372566211, 13.5048186806524, 14.5904959858255, 15.5237940825920, 16.4790857938893, 17.8137595522187, 18.9982251103467, 20.3392608271850, 21.5817542329461, 22.7218253119165, 23.9444316340532, 25.2939077624602, 26.6264082603126, 27.6802415218000, 29.0022881606974, 30.1783424265851, 31.1179209268523, 32.2887764986448, 33.3732790985050, 34.2380544358441, 35.2041112278740, 36.0163848326001, 36.8624779801428, 37.6634899287154, 38.5186413495501, 39.4878256764553, 40.2471232681709, 41.2081417271725, 42.3322924899204, 43.7047997876243, 44.9058976548061, 46.5044971286874, 47.8927266715832, 49.8558978793141, 51.9022338412845, 54.2586141300707, 56.3903798469888, 58.7696803719223, 60.8764981712366, 62.2358527791606, 63.8383633243999, 65.5021323737117, 67.1556090613014, 69.0159229136298, 70.1420773342446, 71.2282683025524, 72.4548338447843, 73.6556507850819, 74.8128040906371, 75.8695501837768, 77.1323517287879, 78.6365237973046, 80.3752005495001, 82.8468947240450, 86.6163997907370, 91.2910588313494, 93.9702969410882, 95.4930183746766, 96.9114001488224, 97.8493292727541, 98.7169169431273, 99.3270162091455, 99.6869018017068, 99.9917942993789, 99.9689500363163, 99.97, 99.98, 99.98, 99.98, 99.98, 99.99, 99.99, 99.99 };
  102. static float interp1(float x)
  103. {
  104. int absx = (int)x - 320;
  105. float max = poo1o[absx + 1];
  106. float min = poo1o[absx];
  107. float temp = x - (float)absx - 320.0f;
  108. return (max - min) * temp + min;
  109. }
  110. #else
  111. #define BAT_100_P 408.5f
  112. #define BAT_90_P 402.6f
  113. #define BAT_80_P 393.4f
  114. #define BAT_70_P 388.0f
  115. #define BAT_60_P 382.0f
  116. #define BAT_50_P 372.0f
  117. #define BAT_40_P 365.0f
  118. #define BAT_30_P 361.0f
  119. #define BAT_20_P 354.0f
  120. #define BAT_10_P 345.0f
  121. #define BAT_0_P 320.0f
  122. static float interp1(float x)
  123. {
  124. if (x > BAT_100_P)return 100.0f;
  125. else if ((x <= BAT_100_P) && (x > BAT_90_P)) { return (x - BAT_90_P) / (BAT_100_P - BAT_90_P) * 10.0f + 90.0f; }
  126. else if ((x <= BAT_90_P) && (x > BAT_80_P)) { return (x - BAT_80_P) / (BAT_90_P - BAT_80_P) * 10.0f + 80.0f; }
  127. else if ((x <= BAT_80_P) && (x > BAT_70_P)) { return (x - BAT_70_P) / (BAT_80_P - BAT_70_P) * 10.0f + 70.0f; }
  128. else if ((x <= BAT_70_P) && (x > BAT_60_P)) { return (x - BAT_60_P) / (BAT_70_P - BAT_60_P) * 10.0f + 60.0f; }
  129. else if ((x <= BAT_60_P) && (x > BAT_50_P)) { return (x - BAT_50_P) / (BAT_60_P - BAT_50_P) * 10.0f + 50.0f; }
  130. else if ((x <= BAT_50_P) && (x > BAT_40_P)) { return (x - BAT_40_P) / (BAT_50_P - BAT_40_P) * 10.0f + 40.0f; }
  131. else if ((x <= BAT_40_P) && (x > BAT_30_P)) { return (x - BAT_30_P) / (BAT_40_P - BAT_30_P) * 10.0f + 30.0f; }
  132. else if ((x <= BAT_30_P) && (x > BAT_20_P)) { return (x - BAT_20_P) / (BAT_30_P - BAT_20_P) * 10.0f + 20.0f; }
  133. else if ((x <= BAT_20_P) && (x > BAT_10_P)) { return (x - BAT_10_P) / (BAT_20_P - BAT_10_P) * 10.0f + 10.0f; }
  134. else if ((x <= BAT_10_P) && (x > BAT_0_P)) { return (x - BAT_0_P) / (BAT_10_P - BAT_0_P) * 10.0f + 00.0f; }
  135. else return 0.0f;
  136. }
  137. #endif
  138. //返回电压百分比
  139. static float Voltage2power(float mV)
  140. {
  141. float rev = 0;
  142. float k = 0;
  143. if (battercb->Voltage2power_init)
  144. {
  145. battercb->preBestResult_Voltage2power = mV / 10;
  146. battercb->Voltage2power_init = 0;
  147. }
  148. k = filter(mV / 10, 0.01, &battercb->preBestResult_Voltage2power);
  149. if (k < 320.0f)
  150. {
  151. rev = 0;
  152. }
  153. else if (k > 420.0f)
  154. {
  155. rev = 100;
  156. }
  157. else
  158. {
  159. rev = interp1(k);
  160. }
  161. return rev;
  162. }
  163. #if IIDUAN == 0
  164. static const float chargeV2P[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.606184684199367, 0.938307744774148, 1.30769659743727, 1.87378869014097, 2.39210582883903, 2.92471759425620, 3.79782257541779, 4.54241638183623, 5.09886597521223, 5.98930945903392, 6.49613916536905, 7.57967916311061, 8.42757721701290, 9.26589943580526, 10.3408809248851, 11.4278317273525, 12.3098089504989, 13.8095299712012, 15.4373756551577, 16.8805115746597, 18.4871688551768, 20.0578462608782, 21.6336381358003, 22.9916066660508, 24.4652374859292, 25.6565902258290, 26.8453581267414, 27.9070922567514, 28.9713295466563, 30.0209078713242, 30.9380166385130, 32.0419258329631, 33.1827748787620, 33.8691297160915, 34.8949274023278, 35.8840553861847, 36.9638277084030, 37.8687458690322, 38.9939274175310, 40.4336758333268, 41.1114865403869, 42.6160733592240, 44.2493873543177, 45.6026105469954, 47.4664557187522, 49.0734043728910, 51.2998758679562, 52.8880367841713, 54.7587352342972, 57.0178625862682, 58.8608281071146, 60.3657347075748, 62.4281274954232, 64.3086188700345, 65.8044424890286, 68.6475622104224, 72.7352289117192, 76.9893033499930, 84.0930819869950, 92.2923770276700, 96.3286261252036, 99.7542287364423 };
  165. static float interp1_chargeV2P(float x)
  166. {
  167. int absx = (int)x - 350;
  168. float max = chargeV2P[absx + 1];
  169. float min = chargeV2P[absx];
  170. float temp = x - (float)absx - 350.0f;
  171. return (max - min) * temp + min;
  172. }
  173. #else
  174. #define CHA_100_P BAT_100_P+0.5f
  175. #define CHA_90_P BAT_90_P+0.5f
  176. #define CHA_80_P BAT_80_P+0.2f
  177. #define CHA_70_P BAT_70_P+0.2f
  178. #define CHA_60_P BAT_60_P+0.2f
  179. #define CHA_50_P BAT_50_P+0.2f
  180. #define CHA_40_P BAT_40_P+0.2f
  181. #define CHA_30_P BAT_30_P+0.2f
  182. #define CHA_20_P BAT_20_P+0.2f
  183. #define CHA_10_P BAT_10_P+0.2f
  184. #define CHA_0_P BAT_0_P+0.2f
  185. static float interp1_chargeV2P(float x)
  186. {
  187. if (x > CHA_100_P)return 100.0f;
  188. else if ((x <= CHA_100_P) && (x > CHA_90_P)) { return (x - CHA_90_P) / (CHA_100_P - CHA_90_P) + 90.0f; }
  189. else if ((x <= CHA_90_P) && (x > CHA_80_P)) { return (x - CHA_80_P) / (CHA_90_P - CHA_80_P) + 80.0f; }
  190. else if ((x <= CHA_80_P) && (x > CHA_70_P)) { return (x - CHA_70_P) / (CHA_80_P - CHA_70_P) + 70.0f; }
  191. else if ((x <= CHA_70_P) && (x > CHA_60_P)) { return (x - CHA_60_P) / (CHA_70_P - CHA_60_P) + 60.0f; }
  192. else if ((x <= CHA_60_P) && (x > CHA_50_P)) { return (x - CHA_50_P) / (CHA_60_P - CHA_50_P) + 50.0f; }
  193. else if ((x <= CHA_50_P) && (x > CHA_40_P)) { return (x - CHA_40_P) / (CHA_50_P - CHA_40_P) + 40.0f; }
  194. else if ((x <= CHA_40_P) && (x > CHA_30_P)) { return (x - CHA_30_P) / (CHA_40_P - CHA_30_P) + 30.0f; }
  195. else if ((x <= CHA_30_P) && (x > CHA_20_P)) { return (x - CHA_20_P) / (CHA_30_P - CHA_20_P) + 20.0f; }
  196. else if ((x <= CHA_20_P) && (x > CHA_10_P)) { return (x - CHA_10_P) / (CHA_20_P - CHA_10_P) + 10.0f; }
  197. else if ((x <= CHA_10_P) && (x > CHA_0_P)) { return (x - CHA_0_P) / (BAT_10_P - CHA_0_P) + 0.0f; }
  198. else return 0.0f;
  199. }
  200. #endif
  201. //返回电压百分比
  202. static float chargeV2P_f(float mV)
  203. {
  204. float rev = 0;
  205. float k = 0;
  206. if (battercb->chargeV2P_f_init)
  207. {
  208. battercb->preBestResult_chargeV2P_f = mV / 10;
  209. battercb->chargeV2P_f_init = 0;
  210. }
  211. k = filter(mV / 10, 0.05, &battercb->preBestResult_chargeV2P_f);
  212. if (k < 350.0f)
  213. {
  214. rev = 0;
  215. }
  216. else if (k > 415.0f)
  217. {
  218. rev = 100;
  219. }
  220. else
  221. {
  222. rev = interp1_chargeV2P(k);
  223. }
  224. return rev;
  225. }
  226. //返回电量百分比
  227. static float Voltage2mah(float mah, float storage_capacity)
  228. {
  229. return mah / storage_capacity * 100.0f;
  230. }
  231. //返回电压剩余绝对容量
  232. static float mah2Voltage(float P, float storage_capacity)
  233. {
  234. return storage_capacity * P / 100.0f;
  235. }
  236. static void Charge(float mV, float* mAh, float interval_s)
  237. {
  238. float A = mV / 3000.0f * 1.1f;
  239. float dmAh = A * 1000.0f * interval_s / 3600.0f;
  240. *mAh = *mAh + dmAh;
  241. }
  242. static float Power_management(float mV_Battery, float mV_Charge)
  243. {
  244. float storage_capacity = 350;
  245. switch (battercb->sta)
  246. {
  247. case 0:
  248. if (mV_Charge > 20)
  249. {
  250. battercb->sta = 2; //充电过程
  251. battercb->P1 = chargeV2P_f(mV_Battery);
  252. battercb->Battery_capacity_mAh = mah2Voltage(battercb->P1, storage_capacity);
  253. }
  254. else
  255. {
  256. battercb->P1 = Voltage2power(mV_Battery);
  257. battercb->sta = 1; //放电过程
  258. if ( ( interp1(mV_Battery/10.0f) - battercb->P1 > 15.0f ) || ( interp1(mV_Battery/10.0f) - battercb->P1 < -15.0f ) )
  259. {
  260. battercb->P1 = interp1(mV_Battery/10.0f);
  261. }
  262. }
  263. break;
  264. case 1://放电
  265. if (mV_Charge > 20)
  266. {
  267. battercb->sta = 2; //充电过程
  268. battercb->kg = 0;
  269. battercb->Battery_capacity_mAh = mah2Voltage(battercb->P1, storage_capacity);
  270. }
  271. else
  272. {
  273. battercb->P2 = Voltage2power(mV_Battery);
  274. if ( ( battercb->P2 - battercb->P1 > 15.0f ) || ( battercb->P2 - battercb->P1 < -15.0f ) )
  275. {
  276. battercb->P1 = battercb->P2;
  277. }
  278. else
  279. {
  280. if ( battercb->P1 > battercb->P2 )
  281. {
  282. battercb->P1 = battercb->P2;
  283. }
  284. }
  285. //解决充满电后充电器不拔出来的情况显示不到100%的情况
  286. if (battercb->P1 > 95.0f)
  287. {
  288. if (charge_in())
  289. {
  290. battercb->P1 = 100.0f;
  291. DEBUG_LOG("charge_in()\r\n");
  292. }
  293. else
  294. {
  295. DEBUG_LOG("charge_in()==%d\r\n", charge_in());
  296. }
  297. }
  298. }
  299. break;
  300. case 2://充电
  301. if (mV_Charge < 20)
  302. {
  303. battercb->sta = 1; //放电过程
  304. //初始化滤波器波器
  305. battercb->preBestResult_Voltage2power = mV_Battery / 10;
  306. #ifdef PIN_BATFULL
  307. if ((battercb->P1 > 99.1f) && (charge_in()) && (nrf_gpio_pin_read(PIN_BATFULL) == 0))
  308. #else
  309. if ((battercb->P1 > 99.1f) && (charge_in()))
  310. #endif
  311. {
  312. battercb->P1 = 100.0f;
  313. }
  314. }
  315. else
  316. {
  317. if ((battercb->P1 == 100.0f)&&( mV_Charge < 200.0f))
  318. {
  319. DEBUG_LOG("((battercb->P1 == 100.0f)&&( mV_Charge < 200.0f))()\r\n");
  320. break;
  321. }
  322. //---------------------------------------------------
  323. Charge(mV_Charge, &battercb->Battery_capacity_mAh, 1);
  324. battercb->P_mAh = Voltage2mah(battercb->Battery_capacity_mAh, storage_capacity);
  325. //---------------------------------------------------
  326. battercb->P2 = chargeV2P_f(mV_Battery);
  327. battercb->kg = mV_Charge / 1000.0f;
  328. if (battercb->kg > 1.0f)
  329. {
  330. battercb->kg = 1.0f;
  331. }
  332. battercb->P2 = (1.0f - battercb->kg) * battercb->P2 + battercb->kg * battercb->P_mAh;
  333. if (battercb->P1 < battercb->P2) //过滤刚插上充电线时候的虚低
  334. {
  335. battercb->P1 = battercb->P2;
  336. }
  337. if (battercb->P1 >= 100.0f)
  338. {
  339. battercb->P1 = 99.9;
  340. }
  341. }
  342. break;
  343. }
  344. return battercb->P1;
  345. }
  346. static int16_t BatadcVal = 0;
  347. int16_t hal_GetBatttery_Adc(void)
  348. {
  349. return ADC_RESULT_IN_MILLI_VOLTS(BatadcVal) * 5 / 3;
  350. }
  351. static void hal_battery_Process(void)
  352. {
  353. static int count = 0;
  354. static int adc_midal = 0;
  355. static int cprign = 0;
  356. #if PRINTBLE
  357. char buff[256];
  358. unsigned char len = 0;
  359. #endif
  360. int16_t CHARGMEASURE;
  361. int16_t volTemp;
  362. int16_t volTemp_CHARGMEASURE;
  363. if (-1 == fml_adc_get_value(PIN_ADC_BAT_CHANNEL, &BatadcVal))return;
  364. else if (0 == BatadcVal)return;
  365. DEBUG_LOG("hal_GetBatttery_Adc:%d\n", BatadcVal);
  366. volTemp = ADC_RESULT_IN_MILLI_VOLTS(BatadcVal) * 5 / 3; // 电池电压转换计算
  367. if (-1 == fml_adc_get_value(PIN_ADC_CHARGMEASURE_CHANNEL, &CHARGMEASURE))return;
  368. volTemp_CHARGMEASURE = ADC_RESULT_IN_MILLI_VOLTS(CHARGMEASURE);// 电池电压转换计算
  369. if (count < 10)
  370. {
  371. adc_midal += volTemp;
  372. DEBUG_LOG(0, "N %d %5d battery %d mV\r\n", count, adc_midal, volTemp);
  373. count++;
  374. return;
  375. }
  376. else if (count == 10)
  377. {
  378. Process_UpdatePeroid(hal_battery_Process, 1000);
  379. volTemp = adc_midal / count;
  380. DEBUG_LOG(0, "average battery %d mV %d\r\n", volTemp, count);
  381. count++;
  382. }
  383. battercb->adc_tp4056_power = Power_management((float)volTemp, (float)volTemp_CHARGMEASURE);
  384. #if PRINTBLE
  385. len = sprintf(buff, "%4d ,%4d ,%4d,%f\r\n", TIME_GetTicks(), volTemp, volTemp_CHARGMEASURE, battercb->adc_tp4056_power);
  386. send_bytes_client((unsigned char*)buff, len);
  387. #endif
  388. if (cprign % 600 == 0)
  389. {
  390. log("%4d,%4d,%4d,%2.1f,%d,%2.1f,%2.1f,%2.1f\n", TIME_GetTicks(), volTemp, volTemp_CHARGMEASURE, battercb->adc_tp4056_power, battercb->sta, battercb->P_mAh, battercb->P2, battercb->kg);
  391. logbuftemp[logbuftemp_len] = 0;
  392. Except_TxError(EXCEPT_DATA_BATTERY, logbuftemp);
  393. }
  394. cprign++;
  395. if (print_log == 1)
  396. {
  397. log("%4d,%4d,%4d,%2.1f,%d,%2.1f,%2.1f,%2.1f\n", TIME_GetTicks(), volTemp, volTemp_CHARGMEASURE, battercb->adc_tp4056_power, battercb->sta, battercb->P_mAh, battercb->P2, battercb->kg);
  398. logbuftemp[logbuftemp_len] = 0;
  399. Except_TxError(EXCEPT_DATA_BATTERY, logbuftemp);
  400. print_log = 2;
  401. }
  402. if (print_log == 2)
  403. {
  404. unsigned char length = 0;
  405. while (ringframe_peek(&battlog, logbuftemp, &length) == 0)
  406. {
  407. if (send_bytes_client((unsigned char*)logbuftemp, length) != 0)
  408. {
  409. return;
  410. }
  411. ringframe_throw(&battlog);
  412. }
  413. print_log = 0;
  414. }
  415. }
  416. //返回的电量范围: 0~100 表示电量百分比
  417. uint8_t GetBatteryPersent(void)
  418. {
  419. uint8_t persent = 0;
  420. persent = (uint8_t)(battercb->adc_tp4056_power + 0.5f);
  421. if (persent > 10)
  422. {
  423. persent = persent / 10;
  424. persent = persent * 10;
  425. }
  426. if (persent > 100)
  427. {
  428. persent = 100;
  429. }
  430. else if (persent <= 0)
  431. {
  432. persent = 0;
  433. }
  434. return persent;
  435. }
  436. void hal_battery_init(void)
  437. {
  438. cb_init();
  439. #ifdef PIN_BATFULL
  440. nrf_gpio_cfg_input(PIN_BATFULL, NRF_GPIO_PIN_PULLUP);
  441. #endif
  442. BLE_Client_Rx_Regist(BLE_ERR, cb_BLE_Client_ERR);
  443. Process_Start(10, "hal_battery", hal_battery_Process);
  444. }