hal_battery_NoPowerEnPin.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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. #define CHA_100_P 415.0f //408
  123. #define CHA_90_P 412.0f //402
  124. #define CHA_80_P 408.0f //393
  125. #define CHA_70_P 403.0f //388
  126. #define CHA_60_P 397.0f //382
  127. #define CHA_50_P 387.0f //372
  128. #define CHA_40_P 380.0f //365
  129. #define CHA_30_P 377.0f //361
  130. #define CHA_20_P 369.0f //354
  131. #define CHA_10_P 360.0f //345
  132. #define CHA_0_P 335.0f
  133. static float interp1(float x)
  134. {
  135. if (x > BAT_100_P)
  136. {
  137. return 100.0f;
  138. }
  139. else if ((x <= BAT_100_P) && (x > BAT_90_P))
  140. {
  141. return (x - BAT_90_P) / (BAT_100_P - BAT_90_P) * 10.0f + 90.0f;
  142. }
  143. else if ((x <= BAT_90_P) && (x > BAT_80_P))
  144. {
  145. return (x - BAT_80_P) / (BAT_90_P - BAT_80_P) * 10.0f + 80.0f;
  146. }
  147. else if ((x <= BAT_80_P) && (x > BAT_70_P))
  148. {
  149. return (x - BAT_70_P) / (BAT_80_P - BAT_70_P) * 10.0f + 70.0f;
  150. }
  151. else if ((x <= BAT_70_P) && (x > BAT_60_P))
  152. {
  153. return (x - BAT_60_P) / (BAT_70_P - BAT_60_P) * 10.0f + 60.0f;
  154. }
  155. else if ((x <= BAT_60_P) && (x > BAT_50_P))
  156. {
  157. return (x - BAT_50_P) / (BAT_60_P - BAT_50_P) * 10.0f + 50.0f;
  158. }
  159. else if ((x <= BAT_50_P) && (x > BAT_40_P))
  160. {
  161. return (x - BAT_40_P) / (BAT_50_P - BAT_40_P) * 10.0f + 40.0f;
  162. }
  163. else if ((x <= BAT_40_P) && (x > BAT_30_P))
  164. {
  165. return (x - BAT_30_P) / (BAT_40_P - BAT_30_P) * 10.0f + 30.0f;
  166. }
  167. else if ((x <= BAT_30_P) && (x > BAT_20_P))
  168. {
  169. return (x - BAT_20_P) / (BAT_30_P - BAT_20_P) * 10.0f + 20.0f;
  170. }
  171. else if ((x <= BAT_20_P) && (x > BAT_10_P))
  172. {
  173. return (x - BAT_10_P) / (BAT_20_P - BAT_10_P) * 10.0f + 10.0f;
  174. }
  175. else if ((x <= BAT_10_P) && (x > BAT_0_P))
  176. {
  177. return (x - BAT_0_P) / (BAT_10_P - BAT_0_P) * 10.0f + 00.0f;
  178. }
  179. else
  180. {
  181. return 0.0f;
  182. }
  183. }
  184. #endif
  185. //返回电压百分比
  186. static float Voltage2power(float mV)
  187. {
  188. float rev = 0;
  189. float k = 0;
  190. if (battercb->Voltage2power_init)
  191. {
  192. battercb->preBestResult_Voltage2power = mV / 10;
  193. battercb->Voltage2power_init = 0;
  194. }
  195. k = filter(mV / 10, 0.01, &battercb->preBestResult_Voltage2power);
  196. if (k < 320.0f)
  197. {
  198. rev = 0;
  199. }
  200. else if (k > 420.0f)
  201. {
  202. rev = 100;
  203. }
  204. else
  205. {
  206. rev = interp1(k);
  207. }
  208. return rev;
  209. }
  210. #if IIDUAN == 0
  211. 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 };
  212. static float interp1_chargeV2P(float x)
  213. {
  214. int absx = (int)x - 350;
  215. float max = chargeV2P[absx + 1];
  216. float min = chargeV2P[absx];
  217. float temp = x - (float)absx - 350.0f;
  218. return (max - min) * temp + min;
  219. }
  220. #else
  221. static float interp1_chargeV2P(float x)
  222. {
  223. if (x > CHA_100_P)
  224. {
  225. return 100.0f;
  226. }
  227. else if ((x <= CHA_100_P) && (x > CHA_90_P))
  228. {
  229. return (x - CHA_90_P) / (CHA_100_P - CHA_90_P) * 10.0f + 90.0f;
  230. }
  231. else if ((x <= CHA_90_P) && (x > CHA_80_P))
  232. {
  233. return (x - CHA_80_P) / (CHA_90_P - CHA_80_P) * 10.0f + 80.0f;
  234. }
  235. else if ((x <= CHA_80_P) && (x > CHA_70_P))
  236. {
  237. return (x - CHA_70_P) / (CHA_80_P - CHA_70_P) * 10.0f + 70.0f;
  238. }
  239. else if ((x <= CHA_70_P) && (x > CHA_60_P))
  240. {
  241. return (x - CHA_60_P) / (CHA_70_P - CHA_60_P) * 10.0f + 60.0f;
  242. }
  243. else if ((x <= CHA_60_P) && (x > CHA_50_P))
  244. {
  245. return (x - CHA_50_P) / (CHA_60_P - CHA_50_P) * 10.0f + 50.0f;
  246. }
  247. else if ((x <= CHA_50_P) && (x > CHA_40_P))
  248. {
  249. return (x - CHA_40_P) / (CHA_50_P - CHA_40_P) * 10.0f + 40.0f;
  250. }
  251. else if ((x <= CHA_40_P) && (x > CHA_30_P))
  252. {
  253. return (x - CHA_30_P) / (CHA_40_P - CHA_30_P) * 10.0f + 30.0f;
  254. }
  255. else if ((x <= CHA_30_P) && (x > CHA_20_P))
  256. {
  257. return (x - CHA_20_P) / (CHA_30_P - CHA_20_P) * 10.0f + 20.0f;
  258. }
  259. else if ((x <= CHA_20_P) && (x > CHA_10_P))
  260. {
  261. return (x - CHA_10_P) / (CHA_20_P - CHA_10_P) * 10.0f + 10.0f;
  262. }
  263. else if ((x <= CHA_10_P) && (x > CHA_0_P))
  264. {
  265. return (x - CHA_0_P) / (BAT_10_P - CHA_0_P) * 10.0f + 0.0f;
  266. }
  267. else
  268. {
  269. return 0.0f;
  270. }
  271. }
  272. #endif
  273. //返回电压百分比
  274. static float chargeV2P_f(float mV)
  275. {
  276. float rev = 0;
  277. float k = 0;
  278. if (battercb->chargeV2P_f_init)
  279. {
  280. battercb->preBestResult_chargeV2P_f = mV / 10;
  281. battercb->chargeV2P_f_init = 0;
  282. }
  283. k = filter(mV / 10, 0.05, &battercb->preBestResult_chargeV2P_f);
  284. if (k < 350.0f)
  285. {
  286. rev = 0;
  287. }
  288. else if (k > 415.0f)
  289. {
  290. rev = 100;
  291. }
  292. else
  293. {
  294. rev = interp1_chargeV2P(k);
  295. }
  296. return rev;
  297. }
  298. //返回电量百分比
  299. static float Voltage2mah(float mah, float storage_capacity)
  300. {
  301. return mah / storage_capacity * 100.0f;
  302. }
  303. //返回电压剩余绝对容量
  304. static float mah2Voltage(float P, float storage_capacity)
  305. {
  306. return storage_capacity * P / 100.0f;
  307. }
  308. static void Charge(float mV, float* mAh, float interval_s)
  309. {
  310. float A = mV / 3000.0f * 1.1f;
  311. float dmAh = A * 1000.0f * interval_s / 3600.0f;
  312. *mAh = *mAh + dmAh;
  313. }
  314. static float Power_management(float mV_Battery, float mV_Charge)
  315. {
  316. float storage_capacity = 350;
  317. switch (battercb->sta)
  318. {
  319. case 0:
  320. if (mV_Charge > 20)
  321. {
  322. battercb->sta = 2; //充电过程
  323. battercb->P1 = chargeV2P_f(mV_Battery);
  324. battercb->Battery_capacity_mAh = mah2Voltage(battercb->P1, storage_capacity);
  325. }
  326. else
  327. {
  328. battercb->P1 = Voltage2power(mV_Battery);
  329. battercb->sta = 1; //放电过程
  330. if ((interp1(mV_Battery / 10.0f) - battercb->P1 > 15.0f) || (interp1(mV_Battery / 10.0f) - battercb->P1 < -15.0f))
  331. {
  332. battercb->P1 = interp1(mV_Battery / 10.0f);
  333. }
  334. }
  335. break;
  336. case 1://放电
  337. if (mV_Charge > 20)
  338. {
  339. battercb->sta = 2; //充电过程
  340. battercb->kg = 0;
  341. battercb->Battery_capacity_mAh = mah2Voltage(battercb->P1, storage_capacity);
  342. }
  343. else
  344. {
  345. battercb->P2 = Voltage2power(mV_Battery);
  346. if ((battercb->P2 - battercb->P1 > 15.0f) || (battercb->P2 - battercb->P1 < -15.0f))
  347. {
  348. battercb->P1 = battercb->P2;
  349. }
  350. else
  351. {
  352. if (battercb->P1 > battercb->P2)
  353. {
  354. battercb->P1 = battercb->P2;
  355. }
  356. }
  357. }
  358. break;
  359. case 2://充电
  360. if (mV_Charge < 20)
  361. {
  362. battercb->sta = 1; //放电过程
  363. //初始化滤波器波器
  364. battercb->preBestResult_Voltage2power = mV_Battery / 10;
  365. #ifdef PIN_BATFULL
  366. if ((battercb->P1 > 99.1f) && (charge_in()) && (nrf_gpio_pin_read(PIN_BATFULL) == 0))
  367. #else
  368. if ((battercb->P1 > 99.1f) && (charge_in()))
  369. #endif
  370. {
  371. battercb->P1 = 100.0f;
  372. }
  373. }
  374. else
  375. {
  376. if ((battercb->P1 > 99.9f))
  377. {
  378. DEBUG_LOG("((battercb->P1 == 100.0f)&&( mV_Charge < 200.0f))()\r\n");
  379. break;
  380. }
  381. //---------------------------------------------------
  382. Charge(mV_Charge, &battercb->Battery_capacity_mAh, 1);
  383. battercb->P_mAh = Voltage2mah(battercb->Battery_capacity_mAh, storage_capacity);
  384. //---------------------------------------------------
  385. battercb->P2 = chargeV2P_f(mV_Battery);
  386. battercb->kg = mV_Charge / 1000.0f;
  387. if (battercb->kg > 1.0f)
  388. {
  389. battercb->kg = 1.0f;
  390. }
  391. battercb->P2 = (1.0f - battercb->kg) * battercb->P2 + battercb->kg * battercb->P_mAh;
  392. if (battercb->P1 < battercb->P2) //过滤刚插上充电线时候的虚低
  393. {
  394. battercb->P1 = battercb->P2;
  395. }
  396. if (battercb->P1 >= 100.0f)
  397. {
  398. battercb->P1 = 99.9;
  399. }
  400. }
  401. break;
  402. }
  403. return battercb->P1;
  404. }
  405. static int16_t BatadcVal = 0;
  406. int16_t hal_GetBatttery_Adc(void)
  407. {
  408. return ADC_RESULT_IN_MILLI_VOLTS(BatadcVal) * 5 / 3;
  409. }
  410. static void hal_battery_Process(void)
  411. {
  412. static int count = 0;
  413. static int adc_midal = 0;
  414. static int cprign = 0;
  415. #if PRINTBLE
  416. char buff[256];
  417. unsigned char len = 0;
  418. #endif
  419. int16_t CHARGMEASURE;
  420. int16_t volTemp;
  421. int16_t volTemp_CHARGMEASURE;
  422. if (-1 == fml_adc_get_value(PIN_ADC_BAT_CHANNEL, &BatadcVal))
  423. {
  424. return;
  425. }
  426. else if (0 == BatadcVal)
  427. {
  428. return;
  429. }
  430. DEBUG_LOG("hal_GetBatttery_Adc:%d\n", BatadcVal);
  431. volTemp = ADC_RESULT_IN_MILLI_VOLTS(BatadcVal) * 5 / 3; // 电池电压转换计算
  432. if (-1 == fml_adc_get_value(PIN_ADC_CHARGMEASURE_CHANNEL, &CHARGMEASURE))
  433. {
  434. return;
  435. }
  436. volTemp_CHARGMEASURE = ADC_RESULT_IN_MILLI_VOLTS(CHARGMEASURE);// 电池电压转换计算
  437. if (count < 10)
  438. {
  439. adc_midal += volTemp;
  440. DEBUG_LOG(0, "N %d %5d battery %d mV\r\n", count, adc_midal, volTemp);
  441. count++;
  442. return;
  443. }
  444. else if (count == 10)
  445. {
  446. Process_UpdatePeroid(hal_battery_Process, 1000);
  447. volTemp = adc_midal / count;
  448. DEBUG_LOG(0, "average battery %d mV %d\r\n", volTemp, count);
  449. count++;
  450. }
  451. battercb->adc_tp4056_power = Power_management((float)volTemp, (float)volTemp_CHARGMEASURE);
  452. #if PRINTBLE
  453. len = sprintf(buff, "%4d ,%4d ,%4d,%f\r\n", TIME_GetTicks(), volTemp, volTemp_CHARGMEASURE, battercb->adc_tp4056_power);
  454. send_bytes_client((unsigned char*)buff, len);
  455. #endif
  456. if (cprign % 600 == 0)
  457. {
  458. 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);
  459. logbuftemp[logbuftemp_len] = 0;
  460. Except_TxError(EXCEPT_DATA_BATTERY, logbuftemp);
  461. }
  462. cprign++;
  463. if (print_log == 1)
  464. {
  465. 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);
  466. logbuftemp[logbuftemp_len] = 0;
  467. Except_TxError(EXCEPT_DATA_BATTERY, logbuftemp);
  468. print_log = 2;
  469. }
  470. if (print_log == 2)
  471. {
  472. unsigned char length = 0;
  473. while (ringframe_peek(&battlog, logbuftemp, &length) == 0)
  474. {
  475. if (send_bytes_client((unsigned char*)logbuftemp, length) != 0)
  476. {
  477. return;
  478. }
  479. ringframe_throw(&battlog);
  480. }
  481. print_log = 0;
  482. }
  483. }
  484. //返回的电量范围: 0~100 表示电量百分比
  485. uint8_t GetBatteryPersent(void)
  486. {
  487. uint8_t persent = 0;
  488. persent = (uint8_t)(battercb->adc_tp4056_power);
  489. if (persent > 10)
  490. {
  491. persent = persent / 10;
  492. persent = persent * 10;
  493. }
  494. if (persent > 100)
  495. {
  496. persent = 100;
  497. }
  498. else if (persent <= 0)
  499. {
  500. persent = 0;
  501. }
  502. return persent;
  503. }
  504. void hal_battery_init(void)
  505. {
  506. cb_init();
  507. #ifdef PIN_BATFULL
  508. nrf_gpio_cfg_input(PIN_BATFULL, NRF_GPIO_PIN_PULLUP);
  509. #endif
  510. BLE_Client_Rx_Regist(BLE_ERR, cb_BLE_Client_ERR);
  511. Process_Start(10, "hal_battery", hal_battery_Process);
  512. }