health.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. #include "bsp/gpio.h"
  2. #include "bsp/ml5238.h"
  3. #include "libs/logger.h"
  4. #include "state.h"
  5. #include "iostate.h"
  6. #include "measure.h"
  7. #include "measure_task.h"
  8. #include "health.h"
  9. #if 0
  10. #define MIN_VOLTAGE_FOR_DISCHARGER (2.2f * CELLS_NUM * 1000) //允许能放电的最小电压
  11. #define MIN_VOLTAGE_FOR_RECOVERY_DISCHARGER (2.3f * CELLS_NUM * 1000) //恢复放电的最小电压
  12. #define MIN_VOLTAGE_FOR_POWER_DOWN (2.1f * CELLS_NUM* 1000)
  13. #define SIGLE_CELL_LOWER_DISCHARGER_VOLTAGE (1820) //最小允许的电芯放电电压 1.8v, 考虑到采样的误差取 1.82
  14. #endif
  15. static int8_t charger_normal_low_temp[PACK_TEMPS_NUM] = {0,0,0,-5}; //正常的充电最低温度
  16. static int8_t charger_normal_high_temp[PACK_TEMPS_NUM] = {50,50,50,55}; //正常的充电最高温度
  17. static int8_t charger_lower_low_temp[PACK_TEMPS_NUM] = {-1,-1,-1,-6}; //需要停止充电的最低温度
  18. static int8_t charger_higher_high_temp[PACK_TEMPS_NUM] = {55,55,55,60}; //需要停止充电的最高温度
  19. static int8_t discharger_normal_low_temp[PACK_TEMPS_NUM] = {-20,-20,-20,-25};//正常的放电最低温度
  20. static int8_t discharger_normal_high_temp[PACK_TEMPS_NUM] = {50,50,50,55};//正常的放电最高温度
  21. static int8_t discharger_lower_low_temp[PACK_TEMPS_NUM] = {-25,-25,-25,-30}; //需要停止放电的最低温度
  22. static int8_t discharger_higher_high_temp[PACK_TEMPS_NUM] = {55,55,55,60};//需要停止放电的最高温度
  23. static int8_t work_lower_temp[PACK_TEMPS_NUM] = {0,0,0,5};
  24. /*定义低温和正常温度下的电池保护参数, [0]低温参数, [1]常温参数 */
  25. /*能提供动力的最小电压*/
  26. static float min_discharger_power_vol[] = {32000, 38000}; //允许能提供动力的最小电压
  27. static float min_discharger_power_recovery_vol[] = {34000, 40000}; //恢复能提供动力的最小电压
  28. static float min_discharger_power_cell_vol[] = {2100, 2500}; //允许能提供动力的最小电芯电压
  29. static float min_discharger_power_recovery_cell_vol[] = {2200, 2600}; //恢复能提供动力的最小电芯电压
  30. /*能提供大电的最小电压*/
  31. static float min_discharger_vol[] = {30000, 36000};//允许能放电的最小电压
  32. static float min_discharger_recovery_vol[] = {32000, 40000};//恢复放电的最小电压
  33. static float min_discharger_cell_vol[] = {2000, 2500};//允许能放电的最小电芯电压
  34. static float min_discharger_cell_recovery_vol[] = {2100, 2600};//恢复放电的最小电芯电压
  35. /*电池PowerDown的最小电压 */
  36. static float min_discharger_pdown_vol[] = {28000, 34000}; //power down的最小电压
  37. static float min_discharger_pdown_cell_vol[] = {1900, 2200}; //power down的最小电芯电压
  38. /* health 模块,只检测状态,不做任何控制,如果有异常情况,控制中心会统一处理 */
  39. static void check_ml5238_state(int event);
  40. static void load_detect_handler(shark_timer_t *timer);
  41. static void clear_short_current_handler(shark_timer_t *timer);
  42. static void charger_detect_handler(shark_timer_t *timer);
  43. static void _aux_lock_timer_handler(shark_timer_t *t);
  44. static void _aux_unlock_timer_handler(shark_timer_t *t);
  45. void soft_current_init(void);
  46. int soft_current_push(float current_ma);
  47. static bms_health_t _health;
  48. static debounce_timer_t _load_detect_timer = {.max_count = 100, .interval = 10, ._timer.handler = load_detect_handler};
  49. static debounce_timer_t _charger_detect_timer = {.max_count = 500, .interval = 10, ._timer.handler = charger_detect_handler};
  50. static shark_timer_t _clear_short_current_timer = {.handler = clear_short_current_handler};
  51. static error_counts_t error_counts;
  52. void health_init(void){
  53. /* 5238如果有异常情况,比如短路,负载移除,通过这个handler上报 */
  54. ml5238_register_notify_handler(check_ml5238_state);
  55. soft_current_init();
  56. set_log_level(MOD_HEALTH, L_debug);
  57. for (int i = 0; i < CELLS_NUM; i++){
  58. _health.internal_resistance[i] = 1;//毫欧,暂时用一个固定数据,后期需要计算R0=(U2-U1)/(I1-I2) - R1(R1为电路上的等效电阻+采样电阻)
  59. }
  60. _health.is_work_temp_normal = 1;
  61. }
  62. void health_log(void){
  63. health_debug("soft short:%d\n", error_counts.soft_current_short);
  64. health_debug("hard short:%d\n", error_counts.hard_current_short);
  65. }
  66. bms_health_t *bms_health(){
  67. return &_health;
  68. }
  69. uint32_t bms_health_pack_lower_voltage(void){
  70. return min_discharger_vol[_health.is_work_temp_normal];
  71. }
  72. uint32_t bms_health_cell_lower_voltage(void){
  73. return min_discharger_cell_vol[_health.is_work_temp_normal];
  74. }
  75. static void clear_short_current_handler(shark_timer_t *timer){
  76. _health.load_current_short = 0; //负载移除,clear load current short
  77. health_warning("clear load current short\n");
  78. }
  79. static void load_detect_handler(shark_timer_t *timer){
  80. if (ml5238_is_load_disconnect()){
  81. _load_detect_timer.count ++;
  82. }else {
  83. _load_detect_timer.count = 0;
  84. }
  85. if (_load_detect_timer.count >= _load_detect_timer.max_count) {
  86. ml5238_enable_load_detect(0);
  87. _load_detect_timer.count = 0;
  88. shark_timer_post(&_clear_short_current_timer, 60 * 1000); //负载移除1分钟后,清除current short flags, can open discharger again
  89. health_warning("load disconnect\n");
  90. }else {
  91. shark_timer_post(&_load_detect_timer._timer, _load_detect_timer.interval);
  92. }
  93. }
  94. static void charger_detect_handler(shark_timer_t *timer){
  95. if (!io_state()->charger_detect || !bms_state_get()->charging) {
  96. _charger_detect_timer.count ++;
  97. }else {
  98. _charger_detect_timer.count = 0;
  99. }
  100. if (_charger_detect_timer.count >= _charger_detect_timer.max_count){
  101. _health.charger_over_current = 0;
  102. _charger_detect_timer.count = 0;
  103. health_warning("clear charger over current\n");
  104. }else {
  105. shark_timer_post(&_charger_detect_timer._timer, _charger_detect_timer.interval);
  106. }
  107. }
  108. static void check_ml5238_state(int event){
  109. health_warning("ml5238 event=0x%x\n", event);
  110. if (event == ML5238_Event_Charger_Over_Current){
  111. shark_timer_post(&_charger_detect_timer._timer, _charger_detect_timer.interval);
  112. }else if (event == ML5238_Event_Short_Current) { //ml5238触发短路保护,充放电mos全部关闭
  113. _health.load_current_short = 1;
  114. error_counts.hard_current_short ++;
  115. ml5238_enable_load_detect(1); //打开负载检测
  116. shark_timer_post(&_load_detect_timer._timer, _load_detect_timer.interval);
  117. }else if (event == ML5238_Event_Load_Disconnect) {
  118. shark_timer_post(&_load_detect_timer._timer, _load_detect_timer.interval);
  119. }
  120. }
  121. static void debug_health(void){
  122. uint32_t *value = (uint32_t *)&_health;
  123. if (*value != 0){
  124. //health_error("health value = 0x%x\n", *value);
  125. }
  126. }
  127. /* 检测电流情况,看是否过流等 */
  128. static debounce_t _charger_over_current = {
  129. .count = 0,
  130. .max_count = 70
  131. };
  132. #if 0
  133. static debounce_t _discharger_over_current = {
  134. .count = 0,
  135. .max_count = 20
  136. };
  137. #endif
  138. /* 55 - 100A, 14 - I x I / 750 */
  139. void check_current_state(void){
  140. float current = measure_value()->load_current;
  141. if (bms_state_get()->charging) {
  142. //_discharger_over_current.count = 0;
  143. if (!_health.charger_over_current) {
  144. if (current > MAX_CURRENT_FOR_CHARGER) {
  145. _charger_over_current.count ++;
  146. }else {
  147. _charger_over_current.count = 0;
  148. }
  149. if (_charger_over_current.count >= _charger_over_current.max_count){
  150. _health.charger_over_current = 1;
  151. _charger_over_current.count = 0;
  152. health_warning("charger over current\n");
  153. shark_timer_post(&_charger_detect_timer._timer, _charger_detect_timer.interval);
  154. }
  155. }
  156. }else{
  157. _charger_over_current.count = 0;
  158. if (!_health.load_current_short){
  159. if (soft_current_push(current)) {
  160. _health.load_current_short = 1;
  161. error_counts.soft_current_short ++;
  162. //_discharger_over_current.count = 0;
  163. ml5238_enable_load_detect(1); //打开负载检测
  164. shark_timer_post(&_load_detect_timer._timer, _load_detect_timer.interval);
  165. soft_current_init();
  166. }
  167. #if 0
  168. if ((abs(current) >= MAX_CURRENT_FOR_DISCHARGER)) {
  169. _discharger_over_current.count++;
  170. }else {
  171. _discharger_over_current.count = 0;
  172. }
  173. if (_discharger_over_current.count >= _discharger_over_current.max_count) {
  174. _health.load_current_short = 1;
  175. _discharger_over_current.count = 0;
  176. ml5238_enable_load_detect(1); //打开负载检测
  177. shark_timer_post(&_load_detect_timer._timer, _load_detect_timer.interval);
  178. }
  179. #endif
  180. }
  181. }
  182. }
  183. /* 检测pack电压,cell电压,pack电压过低触发powerdown*/
  184. static debounce_t _discharger_lower_voltage = {.count = 0, .max_count = 20, .init_count = 10};
  185. static debounce_t _power_down_voltage = {.count = 0, .max_count = 10, .init_count = 0};
  186. static debounce_t _sigle_cell_discharger_lower_vol = {.count = 0, .max_count = 10, .init_count = 5};
  187. static debounce_t _sigle_cell_charger_max_vol = {.count = 0, .max_count = 30, .init_count = 15};
  188. static debounce_t _shut_discharger_lower_voltage = {.count = 0, .max_count = 20,};
  189. static debounce_t _shut_discharger_cell_lower_voltage = {.count = 0, .max_count = 20,};
  190. static int judge_debounce(int input, debounce_t *d){
  191. if (input) {
  192. d->count ++;
  193. if (d->count >= d->max_count){
  194. d->count = 0;
  195. return 1;
  196. }
  197. return 0;
  198. }else {
  199. d->count = d->init_count;
  200. return 0;
  201. }
  202. }
  203. static int _can_powerdown(void){
  204. if (io_state()->charger_detect_irq || bms_state_get()->charging || !bms_work_is_normal()){
  205. return 0;
  206. }
  207. if ((bms_state_get()->pack_voltage <= min_discharger_pdown_vol[_health.is_work_temp_normal] ||
  208. bms_state_get()->cell_min_vol <= min_discharger_pdown_cell_vol[_health.is_work_temp_normal])){
  209. return 1;
  210. }
  211. return 0;
  212. }
  213. void check_voltage_state(void) {
  214. if (bms_state_get()->charging){ //check sigle cell's voltage for charger
  215. _health.discharger_shutpower_voltage = 0;
  216. _health.sigle_cell_lower_voltage = 0;
  217. _health.discharger_lower_voltage = 0;
  218. _health.discharger_cell_shutpower_voltage = 0;
  219. if ((bms_state_get()->cell_max_vol>= SIGLE_CELL_MAX_CHARGER_VOLTAGE)){
  220. if (judge_debounce(!_health.sigle_cell_over_voltage, &_sigle_cell_charger_max_vol)){
  221. _health.sigle_cell_over_voltage = 1;
  222. sys_debug("sigle cell %d\n", bms_state_get()->cell_max_vol);
  223. }
  224. }else if ((bms_state_get()->cell_max_vol < SIGLE_CELL_MAX_CHARGER_VOLTAGE)){
  225. if (judge_debounce(_health.sigle_cell_over_voltage, &_sigle_cell_charger_max_vol)){
  226. _health.sigle_cell_over_voltage = 0;
  227. }
  228. }
  229. _health.charger_over_voltage = _health.sigle_cell_over_voltage;
  230. }else{
  231. //check sigle cell's voltage for discharger
  232. _health.charger_over_voltage = _health.sigle_cell_over_voltage = 0;
  233. if ((bms_state_get()->cell_min_vol <= min_discharger_cell_vol[_health.is_work_temp_normal])){
  234. if (judge_debounce(!_health.sigle_cell_lower_voltage, &_sigle_cell_discharger_lower_vol)){
  235. _health.sigle_cell_lower_voltage = 1;
  236. }
  237. }else if ((bms_state_get()->cell_min_vol >= min_discharger_cell_recovery_vol[_health.is_work_temp_normal])){
  238. if (judge_debounce(_health.sigle_cell_lower_voltage, &_sigle_cell_discharger_lower_vol)){
  239. _health.sigle_cell_lower_voltage = 0;
  240. }
  241. }
  242. //check sigle pack's voltage for discharger
  243. if (bms_state_get()->pack_voltage <= min_discharger_vol[_health.is_work_temp_normal]){
  244. if (judge_debounce(!_health.discharger_lower_voltage, &_discharger_lower_voltage)){
  245. _health.discharger_lower_voltage = 1;
  246. }
  247. }else if (bms_state_get()->pack_voltage >= min_discharger_recovery_vol[_health.is_work_temp_normal]){
  248. if (judge_debounce(_health.discharger_lower_voltage, &_discharger_lower_voltage)){
  249. _health.discharger_lower_voltage = 0;
  250. }
  251. }
  252. //check for shutdown power
  253. if ((bms_state_get()->cell_min_vol <= min_discharger_power_cell_vol[_health.is_work_temp_normal])){
  254. if (judge_debounce(!_health.discharger_cell_shutpower_voltage, &_shut_discharger_cell_lower_voltage)){
  255. _health.discharger_cell_shutpower_voltage = 1;
  256. }
  257. }else if ((bms_state_get()->cell_min_vol >= min_discharger_power_recovery_cell_vol[_health.is_work_temp_normal])){
  258. if (judge_debounce(_health.discharger_cell_shutpower_voltage, &_shut_discharger_cell_lower_voltage)){
  259. _health.discharger_cell_shutpower_voltage = 0;
  260. }
  261. }
  262. if ((bms_state_get()->cell_min_vol <= min_discharger_power_vol[_health.is_work_temp_normal])){
  263. if (judge_debounce(!_health.discharger_cell_shutpower_voltage, &_shut_discharger_lower_voltage)){
  264. _health.discharger_shutpower_voltage = 1;
  265. }
  266. }else if ((bms_state_get()->cell_min_vol >= min_discharger_power_recovery_vol[_health.is_work_temp_normal])){
  267. if (judge_debounce(_health.discharger_cell_shutpower_voltage, &_shut_discharger_lower_voltage)){
  268. _health.discharger_shutpower_voltage = 0;
  269. }
  270. }
  271. }
  272. /* check for power down */
  273. if (_can_powerdown()){
  274. if (judge_debounce(!_health.powerdown_lower_voltage, &_power_down_voltage)) {
  275. /*
  276. * no need to clear powerdown(bms is shutdown), when charger insert,
  277. * system will power on with powerdown_lower_voltage cleared
  278. */
  279. _health.powerdown_lower_voltage = 1;
  280. }
  281. }
  282. debug_health();
  283. }
  284. /* 检测温度情况,看是否过高温,或者过低温 */
  285. static debounce_t _charger_over_temp = {.count = 0, .max_count = 8, .init_count = 0};
  286. static debounce_t _charger_lower_temp = {.count = 0, .max_count = 8, .init_count = 0};
  287. static debounce_t _charger_normal_temp = {.count = 0, .max_count = 8, .init_count = 0};
  288. static debounce_t _discharger_over_temp = {.count = 0, .max_count = 8, .init_count = 0};
  289. static debounce_t _discharger_lower_temp = {.count = 0, .max_count = 8, .init_count = 0};
  290. static debounce_t _discharger_normal_temp = {.count = 0, .max_count = 8, .init_count = 0};
  291. static debounce_t _work_lower_temp = {.count = 0, .max_count = 8, .init_count = 0};
  292. static int _is_over_temp(int8_t *temps){
  293. for (int i = 0; i < PACK_TEMPS_NUM; i++){
  294. if (measure_value()->pack_temp[i] >= temps[i]){
  295. return 1;
  296. }
  297. }
  298. return 0;
  299. }
  300. static int _is_low_temp(int8_t *temps){
  301. for (int i = 0; i < PACK_TEMPS_NUM; i++){
  302. if (measure_value()->pack_temp[i] < temps[i]){
  303. return 1;
  304. }
  305. }
  306. return 0;
  307. }
  308. static uint8_t small_power_detect_count = 0;
  309. static shark_timer_t _aux_lock_timer = {.handler = _aux_lock_timer_handler};
  310. static shark_timer_t _aux_unlock_timer = {.handler = _aux_unlock_timer_handler};
  311. static void _aux_lock_timer_handler(shark_timer_t *t){
  312. AUX_VOL_OPEN(1);
  313. shark_timer_post( &_aux_unlock_timer, 200);
  314. health_debug("open aux[re-enable], %lld\n", shark_get_mseconds());
  315. if (++small_power_detect_count >= 10){
  316. delay_us(1000);
  317. //端口电压小于阈值,判断为小电流短路
  318. if (get_small_current_voltage() < SMALL_CURRENT_MIN_VOLTAGE){//real short
  319. bms_health()->small_current_short = 1;
  320. AUX_VOL_OPEN(0);
  321. small_power_detect_count = 0;
  322. shark_timer_post( &_aux_lock_timer, 30 * 1000); //30s后再次尝试打开
  323. shark_timer_cancel(&_aux_unlock_timer);
  324. health_debug("set aux short current, and retry after 30s\n");
  325. }
  326. }
  327. }
  328. static void _aux_unlock_timer_handler(shark_timer_t *t){
  329. if (!io_state()->aux_lock_detect){
  330. health_debug("unlock aux detect\n");
  331. small_power_detect_count = 0;
  332. bms_health()->small_current_short = 0;
  333. AUX_VOL_OPEN(1);
  334. }
  335. }
  336. void health_stop_aux_detect(void){
  337. shark_timer_cancel(&_aux_unlock_timer);
  338. shark_timer_cancel(&_aux_lock_timer);
  339. bms_health()->small_current_short = 0;
  340. }
  341. void health_process_aux_lock(void){
  342. if (io_state()->aux_lock_detect) {
  343. if (AUX_VOL_IS_OPEN()){
  344. AUX_VOL_OPEN(0);
  345. health_debug("close aux[locked], %lld\n", shark_get_mseconds());
  346. shark_timer_post( &_aux_lock_timer, 1);
  347. shark_timer_cancel(&_aux_unlock_timer);
  348. }
  349. }else {
  350. if (AUX_VOL_IS_OPEN()) {
  351. shark_timer_post( &_aux_unlock_timer, 500);
  352. shark_timer_cancel(&_aux_lock_timer);
  353. }
  354. }
  355. }
  356. void check_temp_state(void){
  357. if (!_health.over_temp_deny_charger){
  358. if (_is_over_temp(charger_higher_high_temp)) {//超过允许的最高温度
  359. debounce_inc(_charger_over_temp);
  360. }else {
  361. debounce_reset(_charger_over_temp);
  362. }
  363. if (debounce_reach_max(_charger_over_temp)){
  364. _health.over_temp_deny_charger = 1;
  365. debounce_reset(_charger_over_temp);
  366. }
  367. }
  368. if (!_health.lower_temp_deny_charger){
  369. if (_is_low_temp(charger_lower_low_temp)) {//低于允许的最低温度
  370. debounce_inc(_charger_lower_temp);
  371. }else {
  372. debounce_reset(_charger_lower_temp);
  373. }
  374. if (debounce_reach_max(_charger_lower_temp)) {
  375. _health.lower_temp_deny_charger = 1;
  376. debounce_reset(_charger_lower_temp);
  377. }
  378. }
  379. if (_health.lower_temp_deny_charger || _health.over_temp_deny_charger) {
  380. if (!_is_over_temp(charger_normal_high_temp) && !_is_low_temp(charger_normal_low_temp)){
  381. debounce_inc(_charger_normal_temp);
  382. }else {
  383. debounce_reset(_charger_normal_temp);
  384. }
  385. if (debounce_reach_max(_charger_normal_temp)){
  386. _health.over_temp_deny_charger = 0;
  387. _health.lower_temp_deny_charger = 0;
  388. debounce_reset(_charger_normal_temp);
  389. }
  390. }
  391. if (!_health.over_temp_deny_discharger){
  392. if (_is_over_temp(discharger_higher_high_temp)) {//超过允许的最高温度
  393. debounce_inc(_discharger_over_temp);
  394. }else {
  395. debounce_reset(_discharger_over_temp);
  396. }
  397. if (debounce_reach_max(_discharger_over_temp)){
  398. _health.over_temp_deny_discharger = 1;
  399. debounce_reset(_discharger_over_temp);
  400. }
  401. }
  402. if (!_health.lower_temp_deny_discharger){
  403. if (_is_low_temp(discharger_lower_low_temp)) {//低于允许的最低温度
  404. debounce_inc(_discharger_lower_temp);
  405. }else {
  406. debounce_reset(_discharger_lower_temp);
  407. }
  408. if (debounce_reach_max(_discharger_lower_temp)) {
  409. _health.lower_temp_deny_discharger = 1;
  410. debounce_reset(_discharger_lower_temp);
  411. }
  412. }
  413. if (_health.lower_temp_deny_discharger || _health.over_temp_deny_discharger) {
  414. if (!_is_over_temp(discharger_normal_high_temp) && !_is_low_temp(discharger_normal_low_temp)){
  415. debounce_inc(_discharger_normal_temp);
  416. }else {
  417. debounce_reset(_discharger_normal_temp);
  418. }
  419. if (debounce_reach_max(_discharger_normal_temp)){
  420. _health.over_temp_deny_discharger = 0;
  421. _health.lower_temp_deny_discharger = 0;
  422. debounce_reset(_discharger_normal_temp);
  423. }
  424. }
  425. if (!_health.is_work_temp_normal){
  426. if (_is_over_temp(work_lower_temp)){
  427. debounce_inc(_work_lower_temp);
  428. if (debounce_reach_max(_work_lower_temp)){
  429. _health.is_work_temp_normal = 1;
  430. debounce_reset(_work_lower_temp);
  431. }
  432. }else {
  433. debounce_reset(_work_lower_temp);
  434. }
  435. }else {
  436. if (_is_low_temp(work_lower_temp)){
  437. debounce_inc(_work_lower_temp);
  438. if (debounce_reach_max(_work_lower_temp)){
  439. _health.is_work_temp_normal = 0;
  440. debounce_reset(_work_lower_temp);
  441. }
  442. }else {
  443. debounce_reset(_work_lower_temp);
  444. }
  445. }
  446. if (bms_state_get()->charging){
  447. _health.discharger_over_temp = 0;
  448. _health.discharger_lower_temp = 0;
  449. _health.charger_over_temp = _health.over_temp_deny_charger;
  450. _health.charger_lower_temp = _health.lower_temp_deny_charger;
  451. }else {
  452. _health.charger_over_temp = 0;
  453. _health.charger_lower_temp = 0;
  454. _health.discharger_over_temp = _health.over_temp_deny_discharger;
  455. _health.discharger_lower_temp = _health.lower_temp_deny_discharger;
  456. }
  457. debug_health();
  458. }