Module_AlarmDetect.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081
  1. /*
  2. * Module_AlarmDetect.c
  3. *
  4. * Created on: 2020年01月15日
  5. * Author: Eason Yang
  6. */
  7. #include <sys/types.h>
  8. #include <sys/stat.h>
  9. #include <sys/time.h>
  10. #include <sys/timeb.h>
  11. #include <sys/ipc.h>
  12. #include <sys/shm.h>
  13. #include <sys/mman.h>
  14. #include <unistd.h>
  15. #include <stdarg.h>
  16. #include <stdio.h> /*標準輸入輸出定義*/
  17. #include <stdlib.h> /*標準函數庫定義*/
  18. #include <unistd.h> /*Unix 標準函數定義*/
  19. #include <fcntl.h> /*檔控制定義*/
  20. #include <termios.h> /*PPSIX 終端控制定義*/
  21. #include <errno.h> /*錯誤號定義*/
  22. #include <errno.h>
  23. #include <string.h>
  24. #include <time.h>
  25. #include <ctype.h>
  26. #include "define.h"
  27. #include "main.h"
  28. #define FILTER_SPEC 50
  29. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  30. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  31. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define Debug
  33. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  34. #define PASS 1
  35. #define FAIL 0
  36. #define ON 1
  37. #define OFF 0
  38. #define SPEC_OV 275
  39. #define SPEC_UV 160
  40. #define SPEC_OC (32*1.1)
  41. #define SPEC_OT 85
  42. #define HYSTERETIC_OUV 10
  43. #define HYSTERETIC_OT 10
  44. #define HYSTERETIC_OC 10
  45. struct{
  46. unsigned short int OV[3];
  47. unsigned short int UV[3];
  48. unsigned short int OC;
  49. unsigned short int OT_AMB;
  50. unsigned short int GMI;
  51. unsigned short int Short;
  52. unsigned short int Ac_Leak;
  53. unsigned short int Dc_Leak;
  54. unsigned short int HandShakingTimeout;
  55. unsigned short int EmrgencyBTN;
  56. unsigned short int Relay_Welding;
  57. unsigned short int Relay_DrivingFault;
  58. unsigned short int CP_LevelFail;
  59. unsigned short int MCU_SelfTestFail;
  60. }Alarm_Counter[2];
  61. void trim(char *s);
  62. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  63. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  64. struct StatusCodeData *ShmStatusCodeData;
  65. struct OCPP16Data *ShmOCPP16Data;
  66. struct Charger *ShmCharger;
  67. int StoreLogMsg(const char *fmt, ...)
  68. {
  69. char Buf[4096+256];
  70. char buffer[4096];
  71. time_t CurrentTime;
  72. struct tm *tm;
  73. va_list args;
  74. va_start(args, fmt);
  75. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  76. va_end(args);
  77. memset(Buf,0,sizeof(Buf));
  78. CurrentTime = time(NULL);
  79. tm=localtime(&CurrentTime);
  80. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/%04d-%02d_%s_%s_SystemLog",
  81. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  82. buffer,
  83. tm->tm_year+1900,tm->tm_mon+1,
  84. ShmSysConfigAndInfo->SysConfig.ModelName,
  85. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  86. #ifdef SystemLogMessage
  87. system(Buf);
  88. #endif
  89. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  90. return rc;
  91. }
  92. int DiffTimeb(struct timeb ST, struct timeb ET)
  93. {
  94. //return milli-second
  95. unsigned int StartTime,StopTime;
  96. StartTime=(unsigned int)ST.time;
  97. StopTime=(unsigned int)ET.time;
  98. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  99. }
  100. //==========================================
  101. // Init all share memory
  102. //==========================================
  103. int InitShareMemory()
  104. {
  105. int result = PASS;
  106. int MeterSMId;
  107. //creat ShmSysConfigAndInfo
  108. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  109. {
  110. #ifdef SystemLogMessage
  111. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  112. #endif
  113. result = FAIL;
  114. }
  115. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  116. {
  117. #ifdef SystemLogMessage
  118. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  119. #endif
  120. result = FAIL;
  121. }
  122. else
  123. {}
  124. //creat ShmStatusCodeData
  125. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  126. {
  127. #ifdef SystemLogMessage
  128. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  129. #endif
  130. result = FAIL;
  131. }
  132. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  133. {
  134. #ifdef SystemLogMessage
  135. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  136. #endif
  137. result = FAIL;
  138. }
  139. else
  140. {}
  141. //creat ShmStatusCodeData
  142. if ((MeterSMId = shmget(ShmChargerKey, sizeof(struct Charger), 0777)) < 0)
  143. {
  144. DEBUG_ERROR("shmget ShmCharger NG\r\n");
  145. result = FAIL;
  146. }
  147. else if ((ShmCharger = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  148. {
  149. DEBUG_ERROR("shmat ShmCharger NG\r\n");
  150. result = FAIL;
  151. }
  152. else
  153. {}
  154. //creat ShmOCPP16Data
  155. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  156. {
  157. DEBUG_ERROR("shmget ShmOCPP16Data NG\r\n");
  158. result = FAIL;
  159. }
  160. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  161. {
  162. DEBUG_ERROR("shmat ShmOCPP16Data NG\r\n");
  163. result = FAIL;
  164. }
  165. else
  166. {}
  167. return result;
  168. }
  169. //==========================================
  170. // Common routine
  171. //==========================================
  172. void trim(char *s)
  173. {
  174. int i=0, j, k, l=0;
  175. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  176. i++;
  177. j = strlen(s)-1;
  178. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  179. j--;
  180. if(i==0 && j==strlen(s)-1) { }
  181. else if(i==0) s[j+1] = '\0';
  182. else {
  183. for(k=i; k<=j; k++) s[l++] = s[k];
  184. s[l] = '\0';
  185. }
  186. }
  187. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  188. {
  189. strncpy(dest, src + start, cnt);
  190. dest[cnt] = 0;
  191. }
  192. //==========================================
  193. // Main process
  194. //==========================================
  195. int main(void)
  196. {
  197. if(InitShareMemory() == FAIL)
  198. {
  199. DEBUG_ERROR("InitShareMemory NG\n");
  200. if(ShmStatusCodeData!=NULL)
  201. {
  202. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  203. }
  204. sleep(5);
  205. return FAIL;
  206. }
  207. for(;;)
  208. {
  209. for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
  210. {
  211. //=====================================
  212. // Over voltage detection
  213. //=====================================
  214. if((ShmSysConfigAndInfo->SysInfo.InputVoltageR > SPEC_OV) &&
  215. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE))
  216. {
  217. if(Alarm_Counter[gun_index].OV[0] > FILTER_SPEC)
  218. {
  219. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputOVP == OFF))
  220. {
  221. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputOVP = ON;
  222. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_VOLTAGE;
  223. DEBUG_INFO("ALARM_OVER_VOLTAGE : alarm \r\n");
  224. }
  225. }
  226. else
  227. {
  228. Alarm_Counter[gun_index].OV[0]++;
  229. }
  230. }
  231. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageR < (SPEC_OV-HYSTERETIC_OUV)) &&
  232. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE)))
  233. {
  234. Alarm_Counter[gun_index].OV[0] = 0;
  235. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputOVP == ON))
  236. {
  237. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputOVP = OFF;
  238. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_VOLTAGE;
  239. DEBUG_INFO("ALARM_OVER_VOLTAGE : recover \r\n");
  240. }
  241. }
  242. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount == 3)
  243. {
  244. if((ShmSysConfigAndInfo->SysInfo.InputVoltageS > SPEC_OV) &&
  245. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE))
  246. {
  247. if(Alarm_Counter[gun_index].OV[1] > FILTER_SPEC)
  248. {
  249. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputOVP == OFF))
  250. {
  251. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputOVP = ON;
  252. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_VOLTAGE;
  253. DEBUG_INFO("ALARM_OVER_VOLTAGE : alarm \r\n");
  254. }
  255. }
  256. else
  257. {
  258. Alarm_Counter[gun_index].OV[1]++;
  259. }
  260. }
  261. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageS < (SPEC_OV-HYSTERETIC_OUV)) &&
  262. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE)))
  263. {
  264. Alarm_Counter[gun_index].OV[1] = 0;
  265. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputOVP == ON))
  266. {
  267. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputOVP = OFF;
  268. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_VOLTAGE;
  269. DEBUG_INFO("ALARM_OVER_VOLTAGE : recover \r\n");
  270. }
  271. }
  272. if((ShmSysConfigAndInfo->SysInfo.InputVoltageT > SPEC_OV) &&
  273. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE))
  274. {
  275. if(Alarm_Counter[gun_index].OV[2] > FILTER_SPEC)
  276. {
  277. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputOVP == OFF))
  278. {
  279. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputOVP = ON;
  280. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_VOLTAGE;
  281. DEBUG_INFO("ALARM_OVER_VOLTAGE : alarm \r\n");
  282. }
  283. }
  284. else
  285. {
  286. Alarm_Counter[gun_index].OV[2]++;
  287. }
  288. }
  289. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageT < (SPEC_OV-HYSTERETIC_OUV)) &&
  290. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_VOLTAGE)))
  291. {
  292. Alarm_Counter[gun_index].OV[2] = 0;
  293. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputOVP == ON))
  294. {
  295. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputOVP = OFF;
  296. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_VOLTAGE;
  297. DEBUG_INFO("ALARM_OVER_VOLTAGE : recover \r\n");
  298. }
  299. }
  300. }
  301. //=====================================
  302. // Under voltage detection
  303. //=====================================
  304. if((ShmSysConfigAndInfo->SysInfo.InputVoltageR < SPEC_UV) &&
  305. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE))
  306. {
  307. if(Alarm_Counter[gun_index].UV[0] > FILTER_SPEC)
  308. {
  309. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputUVP == OFF))
  310. {
  311. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputUVP = ON;
  312. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_UNDER_VOLTAGE;
  313. DEBUG_INFO("ALARM_UNDER_VOLTAGE : alarm \r\n");
  314. }
  315. }
  316. else
  317. {
  318. Alarm_Counter[gun_index].UV[0]++;
  319. }
  320. }
  321. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageR > (SPEC_UV+HYSTERETIC_OUV)) &&
  322. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE)))
  323. {
  324. Alarm_Counter[gun_index].UV[0] = 0;
  325. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputUVP == ON))
  326. {
  327. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL1InputUVP = OFF;
  328. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_UNDER_VOLTAGE;
  329. DEBUG_INFO("ALARM_UNDER_VOLTAGE : recover \r\n");
  330. }
  331. }
  332. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount == 3)
  333. {
  334. if((ShmSysConfigAndInfo->SysInfo.InputVoltageS < SPEC_UV) &&
  335. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE))
  336. {
  337. if(Alarm_Counter[gun_index].UV[1] > FILTER_SPEC)
  338. {
  339. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputUVP == OFF))
  340. {
  341. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputUVP = ON;
  342. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_UNDER_VOLTAGE;
  343. DEBUG_INFO("ALARM_UNDER_VOLTAGE : alarm \r\n");
  344. }
  345. }
  346. else
  347. {
  348. Alarm_Counter[gun_index].UV[1]++;
  349. }
  350. }
  351. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageS > (SPEC_UV+HYSTERETIC_OUV)) &&
  352. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE)))
  353. {
  354. Alarm_Counter[gun_index].UV[1] = 0;
  355. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputUVP == ON))
  356. {
  357. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL2InputUVP = OFF;
  358. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_UNDER_VOLTAGE;
  359. DEBUG_INFO("ALARM_UNDER_VOLTAGE : recover \r\n");
  360. }
  361. }
  362. if((ShmSysConfigAndInfo->SysInfo.InputVoltageT < SPEC_UV) &&
  363. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE))
  364. {
  365. if(Alarm_Counter[gun_index].UV[2] > FILTER_SPEC)
  366. {
  367. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputUVP == OFF))
  368. {
  369. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputUVP = ON;
  370. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_UNDER_VOLTAGE;
  371. DEBUG_INFO("ALARM_UNDER_VOLTAGE : alarm \r\n");
  372. }
  373. }
  374. else
  375. {
  376. Alarm_Counter[gun_index].UV[2]++;
  377. }
  378. }
  379. else if((ShmSysConfigAndInfo->SysInfo.InputVoltageT > (SPEC_OV+HYSTERETIC_OUV)) &&
  380. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_UNDER_VOLTAGE)))
  381. {
  382. Alarm_Counter[gun_index].UV[2] = 0;
  383. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputUVP == ON))
  384. {
  385. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemL3InputUVP = OFF;
  386. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_UNDER_VOLTAGE;
  387. DEBUG_INFO("ALARM_UNDER_VOLTAGE : recover \r\n");
  388. }
  389. }
  390. }
  391. //=====================================
  392. // Over current detection
  393. //=====================================
  394. if((ShmCharger->gun_info[gun_index].outputCurrent.L1N_L12[0] > SPEC_OC) &&
  395. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT))
  396. {
  397. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == OFF))
  398. {
  399. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = ON;
  400. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_CURRENT;
  401. DEBUG_INFO("ALARM_OVER_CURRENT : alarm \r\n");
  402. }
  403. }
  404. else if ((ShmCharger->gun_info[gun_index].outputCurrent.L1N_L12[0] < (SPEC_OC-HYSTERETIC_OC)) &&
  405. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT)))
  406. {
  407. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == ON))
  408. {
  409. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = OFF;
  410. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_CURRENT;
  411. DEBUG_INFO("ALARM_OVER_CURRENT : recover \r\n");
  412. }
  413. }
  414. if(ShmSysConfigAndInfo->SysConfig.AcPhaseCount == 3)
  415. {
  416. if((ShmCharger->gun_info[gun_index].outputCurrent.L2N_L23[0] > SPEC_OC) &&
  417. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT))
  418. {
  419. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == OFF))
  420. {
  421. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = ON;
  422. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_CURRENT;
  423. DEBUG_INFO("ALARM_OVER_CURRENT : alarm \r\n");
  424. }
  425. }
  426. else if ((ShmCharger->gun_info[gun_index].outputCurrent.L2N_L23[0] < (SPEC_OC-HYSTERETIC_OC)) &&
  427. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT)))
  428. {
  429. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == ON))
  430. {
  431. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = OFF;
  432. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_CURRENT;
  433. DEBUG_INFO("ALARM_OVER_CURRENT : recover \r\n");
  434. }
  435. }
  436. if((ShmCharger->gun_info[gun_index].outputCurrent.L3N_L31[0] > SPEC_OC) &&
  437. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT))
  438. {
  439. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == OFF))
  440. {
  441. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = ON;
  442. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_CURRENT;
  443. DEBUG_INFO("ALARM_OVER_CURRENT : alarm \r\n");
  444. }
  445. }
  446. else if ((ShmCharger->gun_info[gun_index].outputCurrent.L3N_L31[0] < (SPEC_OC-HYSTERETIC_OC)) &&
  447. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_CURRENT)))
  448. {
  449. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP == ON))
  450. {
  451. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAcOutputOCP = OFF;
  452. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_CURRENT;
  453. DEBUG_INFO("ALARM_OVER_CURRENT : recover \r\n");
  454. }
  455. }
  456. }
  457. //=====================================
  458. // Over temperature detection
  459. //=====================================
  460. if(//(ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp > SPEC_OT) &&
  461. (ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_TEMPERATURE))
  462. {
  463. if(Alarm_Counter[gun_index].OT_AMB > FILTER_SPEC)
  464. {
  465. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAmbientOTP == OFF))
  466. {
  467. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAmbientOTP = ON;
  468. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_OVER_TEMPERATURE;
  469. DEBUG_INFO("ALARM_OVER_TEMPERATURE : alarm \r\n");
  470. }
  471. }
  472. else
  473. {
  474. Alarm_Counter[gun_index].OT_AMB++;
  475. }
  476. }
  477. else if(//(ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp < (SPEC_OT-10)) &&
  478. (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_OVER_TEMPERATURE)))
  479. {
  480. Alarm_Counter[gun_index].OT_AMB = 0;
  481. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAmbientOTP == ON))
  482. {
  483. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemAmbientOTP = OFF;
  484. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_OVER_TEMPERATURE;
  485. DEBUG_INFO("ALARM_OVER_TEMPERATURE : recover \r\n");
  486. }
  487. }
  488. //=====================================
  489. // Ground fault detection
  490. //=====================================
  491. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_GROUND_FAIL)
  492. {
  493. if(Alarm_Counter[gun_index].GMI > FILTER_SPEC)
  494. {
  495. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip == OFF))
  496. {
  497. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip = ON;
  498. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_GROUND_FAIL;
  499. DEBUG_INFO("ALARM_GROUND_FAIL : alarm \r\n");
  500. }
  501. }
  502. else
  503. {
  504. Alarm_Counter[gun_index].GMI++;
  505. }
  506. }
  507. else if (!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_GROUND_FAIL))
  508. {
  509. Alarm_Counter[gun_index].GMI = 0;
  510. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip == ON ))
  511. {
  512. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.GbGfdTrip = OFF;
  513. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_GROUND_FAIL;
  514. DEBUG_INFO("ALARM_GROUND_FAIL : recover \r\n");
  515. }
  516. }
  517. //=====================================
  518. // CP level fail detection
  519. //====================================
  520. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CP_ERROR)
  521. {
  522. if(Alarm_Counter[gun_index].CP_LevelFail > FILTER_SPEC)
  523. {
  524. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.PilotFault == OFF)
  525. {
  526. ShmStatusCodeData->InfoCode.InfoEvents.bits.PilotFault = ON;
  527. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_CP_ERROR;
  528. DEBUG_INFO("ALARM_CP_ERROR : alarm \r\n");
  529. }
  530. }
  531. else
  532. {
  533. Alarm_Counter[gun_index].CP_LevelFail++;
  534. }
  535. }
  536. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CP_ERROR))
  537. {
  538. Alarm_Counter[gun_index].CP_LevelFail= 0;
  539. if(ShmStatusCodeData->InfoCode.InfoEvents.bits.PilotFault == ON)
  540. {
  541. ShmStatusCodeData->InfoCode.InfoEvents.bits.PilotFault = OFF;
  542. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_CP_ERROR;
  543. DEBUG_INFO("ALARM_CP_ERROR : recover \r\n");
  544. }
  545. }
  546. //=====================================
  547. // Current AC leak detection
  548. //=====================================
  549. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_LEAK_AC)
  550. {
  551. if(Alarm_Counter[gun_index].Ac_Leak > FILTER_SPEC)
  552. {
  553. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip == OFF))
  554. {
  555. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip = ON;
  556. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_CURRENT_LEAK_AC;
  557. DEBUG_INFO("ALARM_CURRENT_LEAK_AC : alarm \r\n");
  558. }
  559. }
  560. else
  561. {
  562. Alarm_Counter[gun_index].Ac_Leak++;
  563. }
  564. }
  565. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_LEAK_AC))
  566. {
  567. Alarm_Counter[gun_index].Ac_Leak = 0;
  568. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip == ON))
  569. {
  570. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip = OFF;
  571. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_CURRENT_LEAK_AC;
  572. DEBUG_INFO("ALARM_CURRENT_LEAK_AC : recover \r\n");
  573. }
  574. }
  575. //=====================================
  576. // Current DC leak detection
  577. //=====================================
  578. // if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_LEAK_DC)
  579. // {
  580. // if(Alarm_Counter[gun_index].Dc_Leak > FILTER_SPEC)
  581. // {
  582. // if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip == OFF))
  583. // {
  584. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip = ON;
  585. // ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_CURRENT_LEAK_DC;
  586. // DEBUG_INFO("ALARM_CURRENT_LEAK_DC : alarm \r\n");
  587. // }
  588. // }
  589. // else
  590. // {
  591. // Alarm_Counter[gun_index].Dc_Leak++;
  592. // }
  593. // }
  594. // else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_LEAK_DC))
  595. // {
  596. // Alarm_Counter[gun_index].Dc_Leak = 0;
  597. // if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip == ON))
  598. // {
  599. // ShmStatusCodeData->AlarmCode.AlarmEvents.bits.RcdTrip = OFF;
  600. // ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_CURRENT_LEAK_DC;
  601. // DEBUG_INFO("ALARM_CURRENT_LEAK_DC : recover \r\n");
  602. // }
  603. // }
  604. //=====================================
  605. // MCU self test fail detection
  606. //=====================================
  607. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_MCU_TESTFAIL)
  608. {
  609. if(Alarm_Counter[gun_index].MCU_SelfTestFail > FILTER_SPEC)
  610. {
  611. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isMcuSelfTest == OFF)
  612. {
  613. ShmCharger->gun_info[gun_index].otherAlarmCode.isMcuSelfTest = ON;
  614. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_MCU_TESTFAIL;
  615. DEBUG_INFO("ALARM_MCU_TESTFAIL : alarm \r\n");
  616. }
  617. }
  618. else
  619. {
  620. Alarm_Counter[gun_index].MCU_SelfTestFail++;
  621. }
  622. }
  623. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_MCU_TESTFAIL))
  624. {
  625. Alarm_Counter[gun_index].MCU_SelfTestFail = 0;
  626. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isMcuSelfTest == ON)
  627. {
  628. ShmCharger->gun_info[gun_index].otherAlarmCode.isMcuSelfTest = OFF;
  629. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_MCU_TESTFAIL;
  630. DEBUG_INFO("ALARM_MCU_TESTFAIL : recover \r\n");
  631. }
  632. }
  633. //=====================================
  634. // Hand shaking timeout detection
  635. //=====================================
  636. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_HANDSHAKE_TIMEOUT)
  637. {
  638. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isHandshakingTimeOut == OFF)
  639. {
  640. ShmCharger->gun_info[gun_index].otherAlarmCode.isHandshakingTimeOut = ON;
  641. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_HANDSHAKE_TIMEOUT;
  642. DEBUG_INFO("ALARM_HANDSHAKE_TIMEOUT : alarm \r\n");
  643. }
  644. }
  645. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_HANDSHAKE_TIMEOUT))
  646. {
  647. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isHandshakingTimeOut == ON)
  648. {
  649. ShmCharger->gun_info[gun_index].otherAlarmCode.isHandshakingTimeOut = OFF;
  650. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_HANDSHAKE_TIMEOUT;
  651. DEBUG_INFO("ALARM_HANDSHAKE_TIMEOUT : recover \r\n");
  652. }
  653. }
  654. //=====================================
  655. // Emergency stop detection
  656. //=====================================
  657. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_EMERGENCY_STOP)
  658. {
  659. if(Alarm_Counter[gun_index].EmrgencyBTN > FILTER_SPEC)
  660. {
  661. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip == OFF))
  662. {
  663. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip = ON;
  664. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_EMERGENCY_STOP;
  665. DEBUG_INFO("ALARM_EMERGENCY_STOP : alarm \r\n");
  666. }
  667. }
  668. else
  669. {
  670. Alarm_Counter[gun_index].EmrgencyBTN++;
  671. }
  672. }
  673. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_EMERGENCY_STOP))
  674. {
  675. Alarm_Counter[gun_index].EmrgencyBTN = 0;
  676. if((ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip == ON))
  677. {
  678. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.EmergencyStopTrip = OFF;
  679. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_EMERGENCY_STOP;
  680. DEBUG_INFO("ALARM_EMERGENCY_STOP : recover \r\n");
  681. }
  682. }
  683. //=====================================
  684. // Relay welding detection
  685. //=====================================
  686. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_RELAY_WELDING)
  687. {
  688. if(Alarm_Counter[gun_index].Relay_Welding > FILTER_SPEC)
  689. {
  690. if((ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayWelding == OFF))
  691. {
  692. ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayWelding = ON;
  693. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_RELAY_WELDING;
  694. DEBUG_INFO("ALARM_RELAY_STATUS : alarm \r\n");
  695. }
  696. }
  697. else
  698. {
  699. Alarm_Counter[gun_index].Relay_Welding++;
  700. }
  701. }
  702. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_RELAY_WELDING))
  703. {
  704. Alarm_Counter[gun_index].Relay_Welding = 0;
  705. if((ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayWelding == ON))
  706. {
  707. ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayWelding = OFF;
  708. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_RELAY_WELDING;
  709. DEBUG_INFO("ALARM_RELAY_STATUS : recover \r\n");
  710. }
  711. }
  712. //=====================================
  713. // Relay driving fault detection
  714. //=====================================
  715. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_RELAY_DRIVE_FAULT)
  716. {
  717. if(Alarm_Counter[gun_index].Relay_DrivingFault > FILTER_SPEC)
  718. {
  719. if((ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayDrivingFault == OFF))
  720. {
  721. ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayDrivingFault = ON;
  722. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_RELAY_DRIVE_FAULT;
  723. DEBUG_INFO("ALARM_RELAY_DRIVE_FAULT : alarm \r\n");
  724. }
  725. }
  726. else
  727. {
  728. Alarm_Counter[gun_index].Relay_DrivingFault++;
  729. }
  730. }
  731. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_RELAY_DRIVE_FAULT))
  732. {
  733. Alarm_Counter[gun_index].Relay_DrivingFault = 0;
  734. if((ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayDrivingFault == ON))
  735. {
  736. ShmStatusCodeData->FaultCode.FaultEvents.bits.AcOutputRelayDrivingFault = OFF;
  737. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_RELAY_DRIVE_FAULT;
  738. DEBUG_INFO("ALARM_RELAY_DRIVE_FAULT : recover \r\n");
  739. }
  740. }
  741. //=====================================
  742. // Current short detection
  743. //=====================================
  744. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_SHORT)
  745. {
  746. if(Alarm_Counter[gun_index].Short > FILTER_SPEC)
  747. {
  748. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isCurrentShort == OFF)
  749. {
  750. ShmCharger->gun_info[gun_index].otherAlarmCode.isCurrentShort = ON;
  751. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_CURRENT_SHORT;
  752. DEBUG_INFO("ALARM_CIRCUIT_SHORT : alarm \r\n");
  753. }
  754. }
  755. else
  756. {
  757. Alarm_Counter[gun_index].Short++;
  758. }
  759. }
  760. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_CURRENT_SHORT))
  761. {
  762. Alarm_Counter[gun_index].Short = 0;
  763. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isCurrentShort == ON)
  764. {
  765. ShmCharger->gun_info[gun_index].otherAlarmCode.isCurrentShort = OFF;
  766. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_CURRENT_SHORT;
  767. DEBUG_INFO("ALARM_CIRCUIT_SHORT : recover \r\n");
  768. }
  769. }
  770. //=====================================
  771. // Rotatory switch detection
  772. //=====================================
  773. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_ROTATORY_SWITCH_FAULT)
  774. {
  775. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isRotatorySwitch == OFF)
  776. {
  777. ShmCharger->gun_info[gun_index].otherAlarmCode.isRotatorySwitch = ON;
  778. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_ROTATORY_SWITCH_FAULT;
  779. DEBUG_INFO("ALARM_ROTATORY_SWITCH_FAULT : alarm \r\n");
  780. }
  781. }
  782. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_ROTATORY_SWITCH_FAULT))
  783. {
  784. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isRotatorySwitch == ON)
  785. {
  786. ShmCharger->gun_info[gun_index].otherAlarmCode.isRotatorySwitch = OFF;
  787. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_ROTATORY_SWITCH_FAULT;
  788. DEBUG_INFO("ALARM_ROTATORY_SWITCH_FAULT : recover \r\n");
  789. }
  790. }
  791. //=====================================
  792. // Leakage module detection
  793. //=====================================
  794. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_LEAK_MODULE_FAIL)
  795. {
  796. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isLeakageModule == OFF)
  797. {
  798. ShmCharger->gun_info[gun_index].otherAlarmCode.isLeakageModule = ON;
  799. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_LEAK_MODULE_FAIL;
  800. DEBUG_INFO("ALARM_LEAK_MODULE_FAIL : alarm \r\n");
  801. }
  802. }
  803. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_LEAK_MODULE_FAIL))
  804. {
  805. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isLeakageModule == ON)
  806. {
  807. ShmCharger->gun_info[gun_index].otherAlarmCode.isLeakageModule = OFF;
  808. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_LEAK_MODULE_FAIL;
  809. DEBUG_INFO("ALARM_LEAK_MODULE_FAIL : recover \r\n");
  810. }
  811. }
  812. //=====================================
  813. // Shutter detection
  814. //=====================================
  815. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_SHUTTER_FAULT)
  816. {
  817. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isShutterFail == OFF)
  818. {
  819. ShmCharger->gun_info[gun_index].otherAlarmCode.isShutterFail = ON;
  820. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_SHUTTER_FAULT;
  821. DEBUG_INFO("ALARM_SHUTTER_FAULT : alarm \r\n");
  822. }
  823. }
  824. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_SHUTTER_FAULT))
  825. {
  826. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isShutterFail == ON)
  827. {
  828. ShmCharger->gun_info[gun_index].otherAlarmCode.isShutterFail = OFF;
  829. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_SHUTTER_FAULT;
  830. DEBUG_INFO("ALARM_SHUTTER_FAULT : recover \r\n");
  831. }
  832. }
  833. //=====================================
  834. // Locker detection
  835. //=====================================
  836. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_LOCKER_FAULT)
  837. {
  838. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isLockerFault == OFF)
  839. {
  840. ShmCharger->gun_info[gun_index].otherAlarmCode.isLockerFault = ON;
  841. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_LOCKER_FAULT;
  842. DEBUG_INFO("ALARM_LOCKER_FAULT : alarm \r\n");
  843. }
  844. }
  845. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_LOCKER_FAULT))
  846. {
  847. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isLockerFault== ON)
  848. {
  849. ShmCharger->gun_info[gun_index].otherAlarmCode.isLockerFault = OFF;
  850. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_LOCKER_FAULT;
  851. DEBUG_INFO("ALARM_LOCKER_FAULT : recover \r\n");
  852. }
  853. }
  854. //=====================================
  855. // Power drop detection
  856. //=====================================
  857. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_POWER_DROP)
  858. {
  859. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isPowerDrop == OFF)
  860. {
  861. ShmCharger->gun_info[gun_index].otherAlarmCode.isPowerDrop = ON;
  862. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode |= ALARM_POWER_DROP;
  863. DEBUG_INFO("ALARM_POWER_DROP : alarm \r\n");
  864. }
  865. }
  866. else if(!(ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode & ALARM_POWER_DROP))
  867. {
  868. if(ShmCharger->gun_info[gun_index].otherAlarmCode.isPowerDrop == ON)
  869. {
  870. ShmCharger->gun_info[gun_index].otherAlarmCode.isPowerDrop = OFF;
  871. ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode &= ~ALARM_POWER_DROP;
  872. DEBUG_INFO("ALARM_POWER_DROP : recover \r\n");
  873. }
  874. }
  875. //=====================================
  876. // OCPP error code message
  877. //=====================================
  878. if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_OVER_VOLTAGE)
  879. {
  880. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OverVoltage");
  881. }
  882. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_UNDER_VOLTAGE)
  883. {
  884. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "UnderVoltage");
  885. }
  886. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_OVER_CURRENT)
  887. {
  888. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OverCurrentFailure");
  889. }
  890. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_OVER_TEMPERATURE)
  891. {
  892. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "HighTemperature");
  893. }
  894. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_GROUND_FAIL)
  895. {
  896. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "GroundFailure");
  897. }
  898. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_CP_ERROR)
  899. {
  900. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  901. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "CpError");
  902. }
  903. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_CURRENT_LEAK_AC)
  904. {
  905. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  906. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "ACLeakage");
  907. }
  908. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_CURRENT_LEAK_DC)
  909. {
  910. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  911. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "DCLeakage");
  912. }
  913. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_MCU_TESTFAIL)
  914. {
  915. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  916. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "McuTestFail");
  917. }
  918. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_HANDSHAKE_TIMEOUT)
  919. {
  920. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  921. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "HandshakeTimeout");
  922. }
  923. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_EMERGENCY_STOP)
  924. {
  925. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  926. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "EmergencyStop");
  927. }
  928. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_RELAY_WELDING)
  929. {
  930. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  931. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "RelayWelding");
  932. }
  933. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_LEAK_MODULE_FAIL)
  934. {
  935. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  936. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "LeakageModuleFail");
  937. }
  938. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_SHUTTER_FAULT)
  939. {
  940. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  941. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "ShutterFault");
  942. }
  943. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_LOCKER_FAULT)
  944. {
  945. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "ConnectorLockFailure");
  946. }
  947. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_POWER_DROP)
  948. {
  949. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  950. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "PowerDrop");
  951. }
  952. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_CURRENT_SHORT)
  953. {
  954. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  955. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "CircuitShort");
  956. }
  957. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_ROTATORY_SWITCH_FAULT)
  958. {
  959. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  960. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "RotatorySwitchFault");
  961. }
  962. else if(ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode & ALARM_RELAY_DRIVE_FAULT)
  963. {
  964. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "OtherError");
  965. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode , "RelayDriveFault");
  966. }
  967. else
  968. {
  969. sprintf((char*)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , "NoError");
  970. }
  971. //=====================================
  972. // Latch alarm recover in state A
  973. //=====================================
  974. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == 1))
  975. {
  976. /*
  977. TODO: Recover latch alarm here
  978. */
  979. }
  980. //=====================================
  981. // Latch alarm recover in state B1 and B2
  982. //=====================================
  983. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == 2) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == 3))
  984. {
  985. /*
  986. TODO: Recover latch alarm here
  987. */
  988. }
  989. //=====================================
  990. // Latch alarm recover in state C
  991. //=====================================
  992. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == 4))
  993. {
  994. /*
  995. TODO: Recover latch alarm here
  996. */
  997. }
  998. }
  999. usleep(100000);
  1000. }
  1001. return FAIL;
  1002. }