AcPlug.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. #include <stdio.h> /*標準輸入輸出定義*/
  2. #include <stdlib.h> /*標準函數庫定義*/
  3. #include <string.h>
  4. #include <stdint.h>
  5. #include <time.h>
  6. #include <sys/time.h>
  7. #include <sys/timeb.h>
  8. #include "../ShareMemory/shmMem.h"
  9. #include "../Config.h"
  10. #include "Module_InternalComm.h"
  11. #include "internalComm.h"
  12. //------------------------------------------------------------------------------
  13. static struct SysConfigData *pSysConfig = NULL;
  14. static struct SysInfoData *pSysInfo = NULL;
  15. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  16. static struct AlarmCodeData *pAlarmCode = NULL;
  17. static struct InfoCodeData *pInfoCode = NULL;
  18. static struct FaultcodeData *pFaultCode = NULL;
  19. static struct OCPP16Data *ShmOCPP16Data = NULL;
  20. static int Uart5Fd = 0;
  21. static struct timeval _ac_charging_comp;
  22. static struct timeval _ac_preparing;
  23. static struct timeb _ac_startChargingTime;
  24. static struct timeb _ac_endChargingTime;
  25. static Ac_Status acStatus;
  26. static Ac_Led_Status ledStatus;
  27. static Ac_Alarm_code acAlarmCode;
  28. static Ac_Charging_energy acChargingEnergy;
  29. static Ac_Charging_current acChargingCurrent;
  30. static int _alarm_code[] = {
  31. AC_OVP,
  32. AC_UVP,
  33. AC_OCP,
  34. AC_OTP,
  35. AC_GMI_FAULT,
  36. AC_CP_ERROR,
  37. AC_AC_LEAKAGE,
  38. AC_DC_LEAKAGE,
  39. AC_SYSTEM_SELFTEST_FAULT,
  40. AC_HANDSHAKE_TIMEOUT,
  41. AC_EMC_STOP,
  42. AC_RELAY_WELDING,
  43. AC_GF_MODULE_FAULT,
  44. AC_SHUTTER_FAULT,
  45. AC_LOCKER_FAULT,
  46. AC_POWER_DROP,
  47. AC_CIRCUIT_SHORT,
  48. AC_ROTARY_SWITCH_FAULT,
  49. AC_RELAY_DRIVE_FAULT
  50. };
  51. //------------------------------------------------------------------------------
  52. static uint8_t GetChargingEnergy(void)
  53. {
  54. return Query_Charging_Energy(Uart5Fd, ADDR_AC_PLUG, &acChargingEnergy);
  55. }
  56. static void ChangeStartOrStopDateTime(uint8_t isStart)
  57. {
  58. char cmdBuf[32];
  59. struct timeb csuTime;
  60. struct tm *tmCSU;
  61. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  62. ftime(&csuTime);
  63. tmCSU = localtime(&csuTime.time);
  64. sprintf(cmdBuf, "%04d-%02d-%02d %02d:%02d:%02d",
  65. tmCSU->tm_year + 1900,
  66. tmCSU->tm_mon + 1,
  67. tmCSU->tm_mday,
  68. tmCSU->tm_hour,
  69. tmCSU->tm_min,
  70. tmCSU->tm_sec);
  71. if (isStart) {
  72. strcpy((char *)pAcChargingInfo->StartDateTime, cmdBuf);
  73. } else {
  74. strcpy((char *)pAcChargingInfo->StopDateTime, cmdBuf);
  75. }
  76. }
  77. static void OcppStartTransation(uint8_t gunIndex)
  78. {
  79. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  80. if (strcmp((char *)pAcChargingInfo->StartUserId, "") == EQUAL) {
  81. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag,
  82. (char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag);
  83. } else {
  84. strcpy((char *)ShmOCPP16Data->StartTransaction[gunIndex].IdTag,
  85. (char *)pAcChargingInfo->StartUserId);
  86. }
  87. log_info("AC IdTag = %s \n", ShmOCPP16Data->StartTransaction[gunIndex].IdTag);
  88. ShmOCPP16Data->CpMsg.bits[gunIndex].StartTransactionReq = YES;
  89. }
  90. static void SetLegacyReq(uint8_t _switch)
  91. {
  92. Config_Legacy_Req(Uart5Fd, ADDR_AC_PLUG, _switch);
  93. }
  94. static void ChangeLedStatus(void)
  95. {
  96. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  97. if (pAcChargingInfo->SystemStatus == S_IDLE) {
  98. ledStatus.ActionMode = 1;
  99. } else if (pAcChargingInfo->SystemStatus == S_PREPARNING) {
  100. ledStatus.ActionMode = 3;
  101. } else if (pAcChargingInfo->SystemStatus == S_CHARGING) {
  102. ledStatus.ActionMode = 4;
  103. }
  104. Config_LED_Status(Uart5Fd, ADDR_AC_PLUG, &ledStatus);
  105. }
  106. static uint8_t isModeChange(void)
  107. {
  108. uint8_t result = NO;
  109. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  110. if (pAcChargingInfo->SystemStatus != pAcChargingInfo->PreviousSystemStatus) {
  111. result = YES;
  112. pAcChargingInfo->PreviousSystemStatus = pAcChargingInfo->SystemStatus;
  113. }
  114. return result;
  115. }
  116. static bool OcppRemoteStop(uint8_t gunIndex)
  117. {
  118. bool result = ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq;
  119. if (ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq == YES) {
  120. strcpy((char *)ShmOCPP16Data->StopTransaction[gunIndex].StopReason, "Remote");
  121. ShmOCPP16Data->CsMsg.bits[gunIndex].RemoteStopTransactionReq = NO;
  122. }
  123. return result;
  124. }
  125. static void CheckAlarmOccur(void)
  126. {
  127. bool isErr = false;
  128. uint8_t count = 0;
  129. for (count = 0; count < sizeof(_alarm_code) / sizeof(_alarm_code[0]); count++) {
  130. if (acAlarmCode.AcAlarmCode & _alarm_code[count]) {
  131. isErr = true;
  132. switch (_alarm_code[count]) {
  133. case AC_OVP: pAlarmCode->AlarmEvents.bits.AcSystemInputOVP = YES; break;
  134. case AC_UVP: pAlarmCode->AlarmEvents.bits.AcSystemInputUVP = YES; break;
  135. case AC_OCP: pAlarmCode->AlarmEvents.bits.SystemAcOutputOCP = YES; break;
  136. case AC_OTP: pAlarmCode->AlarmEvents.bits.SystemAmbientOTP = YES; break;
  137. case AC_GMI_FAULT: pAlarmCode->AlarmEvents.bits.AcGroundfaultFail = YES; break;
  138. case AC_CP_ERROR: pInfoCode->InfoEvents.bits.PilotFault = YES; break;
  139. case AC_AC_LEAKAGE: pAlarmCode->AlarmEvents.bits.RcdTrip = YES; break;
  140. case AC_DC_LEAKAGE: pAlarmCode->AlarmEvents.bits.RcdTrip = YES; break;
  141. case AC_SYSTEM_SELFTEST_FAULT: pAlarmCode->AlarmEvents.bits.McuSelftestFail = YES; break;
  142. case AC_HANDSHAKE_TIMEOUT: break;
  143. //case AC_EMC_STOP: pAlarmCode->AlarmEvents.bits.EmergencyStopTrip = YES; break;
  144. case AC_RELAY_WELDING: pFaultCode->FaultEvents.bits.AcOutputRelayWelding = YES; break;
  145. case AC_GF_MODULE_FAULT: pFaultCode->FaultEvents.bits.RcdSelfTestFail = YES; break;
  146. case AC_SHUTTER_FAULT: break;
  147. case AC_LOCKER_FAULT: pFaultCode->FaultEvents.bits.AcConnectorLockFail = YES; break;
  148. case AC_POWER_DROP: pAlarmCode->AlarmEvents.bits.SystemL1InputDrop = YES; break;
  149. case AC_CIRCUIT_SHORT: pAlarmCode->AlarmEvents.bits.CircuitShort = YES; break;
  150. case AC_ROTARY_SWITCH_FAULT: break;
  151. case AC_RELAY_DRIVE_FAULT: pFaultCode->FaultEvents.bits.AcOutputRelayDrivingFault = YES; break;
  152. }
  153. } else {
  154. switch (_alarm_code[count]) {
  155. case AC_OVP: pAlarmCode->AlarmEvents.bits.AcSystemInputOVP = NO; break;
  156. case AC_UVP: pAlarmCode->AlarmEvents.bits.AcSystemInputUVP = NO; break;
  157. case AC_OCP: pAlarmCode->AlarmEvents.bits.SystemAcOutputOCP = NO; break;
  158. case AC_OTP: pAlarmCode->AlarmEvents.bits.SystemAmbientOTP = NO; break;
  159. case AC_GMI_FAULT: pAlarmCode->AlarmEvents.bits.AcGroundfaultFail = NO; break;
  160. case AC_CP_ERROR: pInfoCode->InfoEvents.bits.PilotFault = NO; break;
  161. case AC_AC_LEAKAGE: pAlarmCode->AlarmEvents.bits.RcdTrip = NO; break;
  162. case AC_DC_LEAKAGE: pAlarmCode->AlarmEvents.bits.RcdTrip = NO; break;
  163. case AC_SYSTEM_SELFTEST_FAULT: pAlarmCode->AlarmEvents.bits.McuSelftestFail = NO; break;
  164. case AC_HANDSHAKE_TIMEOUT: break;
  165. //case AC_EMC_STOP: pAlarmCode->AlarmEvents.bits.EmergencyStopTrip = NO; break;
  166. case AC_RELAY_WELDING: pFaultCode->FaultEvents.bits.AcOutputRelayWelding = NO; break;
  167. case AC_GF_MODULE_FAULT: pFaultCode->FaultEvents.bits.RcdSelfTestFail = NO; break;
  168. case AC_SHUTTER_FAULT: break;
  169. case AC_LOCKER_FAULT: pFaultCode->FaultEvents.bits.AcConnectorLockFail = NO; break;
  170. case AC_POWER_DROP: pAlarmCode->AlarmEvents.bits.SystemL1InputDrop = NO; break;
  171. case AC_CIRCUIT_SHORT: pAlarmCode->AlarmEvents.bits.CircuitShort = NO; break;
  172. case AC_ROTARY_SWITCH_FAULT: break;
  173. case AC_RELAY_DRIVE_FAULT: pFaultCode->FaultEvents.bits.AcOutputRelayDrivingFault = NO; break;
  174. }
  175. }
  176. }
  177. ac_chargingInfo[0]->IsErrorOccur = isErr;
  178. }
  179. static void GetAcAlarmCode(void)
  180. {
  181. if (Query_AC_Alarm_Code(Uart5Fd, ADDR_AC_PLUG, &acAlarmCode) == PASS) {
  182. CheckAlarmOccur();
  183. }
  184. }
  185. static void GetAcStatus(void)
  186. {
  187. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  188. if (Query_AC_Status(Uart5Fd, ADDR_AC_PLUG, &acStatus) == PASS) {
  189. pSysConfig->AcRatingCurrent = acStatus.MaxCurrent;
  190. if (pSysConfig->AcMaxChargingCurrent == 0) {
  191. pSysConfig->AcMaxChargingCurrent = pSysConfig->AcRatingCurrent;
  192. }
  193. pAcChargingInfo->ConnectorPlugIn = acStatus.CpStatus;
  194. // log_info("CpStatus = %d \n", acStatus.CpStatus);
  195. // printf("CurLimit = %d \n", acStatus.CurLimit);
  196. // printf("PilotVol_P = %d \n", acStatus.PilotVol_P);
  197. // printf("PilotVol_N = %d \n", acStatus.PilotVol_N);
  198. // printf("LockStatus = %d \n", acStatus.LockStatus);
  199. // printf("RelayStatus = %d \n", acStatus.RelayStatus);
  200. // printf("ShutterStatus = %d \n", acStatus.ShutterStatus);
  201. // printf("MeterStatus = %d \n", acStatus.MeterStatus);
  202. // printf("PpStatus = %d \n", acStatus.PpStatus);
  203. // printf("MaxCurrent = %d \n", acStatus.MaxCurrent);
  204. // printf("RotateSwitchStatus = %d \n", acStatus.RelayStatus);
  205. // printf("============================== \n");
  206. //
  207. // pAcChargingInfo->SystemStatus = acStatus.CpStatus;
  208. }
  209. // else
  210. // log_info("GetAcStatus return fail. \n");
  211. }
  212. static void ChangeToCsuMode(void)
  213. {
  214. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  215. pAcChargingInfo->IsModeChagned = Config_CSU_Mode(Uart5Fd, ADDR_AC_PLUG);
  216. // if (pAcChargingInfo->IsModeChagned == PASS)
  217. // {
  218. // Config_Reset_MCU(Uart5Fd, ADDR_AC_PLUG);
  219. // }
  220. }
  221. static void GetAcModelName(void)
  222. {
  223. memset(SysConfig->AcModelName, 0, sizeof(SysConfig->AcModelName));
  224. if (Query_Model_Name(Uart5Fd, ADDR_AC_PLUG, SysConfig->AcModelName) == PASS) {
  225. log_info("ac model name = %s \n", SysConfig->AcModelName);
  226. }
  227. }
  228. static void GetFwVersion_AC(void)
  229. {
  230. Ver ver = {0};
  231. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  232. if (Query_FW_Ver(Uart5Fd, ADDR_AC_PLUG, &ver) == PASS) {
  233. pAcChargingInfo->SelfTest_Comp = YES;
  234. strcpy((char *)pAcChargingInfo->version, ver.Version_FW);
  235. }
  236. }
  237. void AcPlugTask(int uartFD)
  238. {
  239. if (acgunCount <= 0) {
  240. return;
  241. }
  242. if (CreateAllCsuShareMemory() == FAIL) {
  243. log_error("Fan Board create share memory failed\r\n");
  244. }
  245. MappingGunChargingInfo("Fan Board Task");
  246. //share memory mapping
  247. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  248. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  249. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  250. pInfoCode = (struct InfoCodeData *)GetShmInfoCodeData();
  251. pFaultCode = (struct FaultCodeData *)GetShmFaultCodeData();
  252. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  253. struct ChargingInfoData *pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(0);
  254. //pAcChargingInfo->SelfTest_Comp = YES;
  255. //pAcChargingInfo->IsModeChagned = PASS;
  256. //---------------------------------------------
  257. if (pAcChargingInfo->SelfTest_Comp == NO) {
  258. pAcChargingInfo->IsModeChagned = NO;
  259. GetFwVersion_AC();
  260. GetAcModelName();
  261. } else if (pAcChargingInfo->SelfTest_Comp == YES) {
  262. if (pAcChargingInfo->IsModeChagned != PASS) {
  263. ChangeToCsuMode();
  264. return;
  265. }
  266. GetAcStatus();
  267. GetAcAlarmCode();
  268. uint8_t _status = S_NONE;
  269. if (pAcChargingInfo->SystemStatus == S_IDLE && pAcChargingInfo->IsErrorOccur) {
  270. _status = S_ALARM;
  271. } else if (acStatus.CpStatus == AC_SYS_A || pAcChargingInfo->IsErrorOccur) {
  272. if (pAcChargingInfo->SystemStatus == S_CHARGING) {
  273. _status = S_TERMINATING;
  274. } else if (pAcChargingInfo->SystemStatus >= S_TERMINATING) {
  275. if (GetTimeoutValue(_ac_charging_comp) >= 10000000 && acStatus.CpStatus == AC_SYS_A) {
  276. _status = S_IDLE;
  277. }
  278. } else {
  279. _status = S_IDLE;
  280. }
  281. } else if (pAcChargingInfo->SystemStatus >= S_PREPARNING &&
  282. pAcChargingInfo->SystemStatus < S_CHARGING) {
  283. if (acStatus.CpStatus == AC_SYS_C && acStatus.RelayStatus == YES) {
  284. _status = S_CHARGING;
  285. } else if (GetTimeoutValue(_ac_preparing) >= 30000000) {
  286. _status = S_IDLE;
  287. }
  288. } else if ((acStatus.CpStatus == AC_SYS_B || pAcChargingInfo->ConnectorPlugIn == AC_SYS_B) &&
  289. pAcChargingInfo->IsAvailable &&
  290. !pAcChargingInfo->IsErrorOccur &&
  291. (ShmSysConfigAndInfo->SysInfo.WaitForPlugit == YES ||
  292. SysConfig->AuthorisationMode == AUTH_MODE_DISABLE)) {
  293. if (pAcChargingInfo->RemoteStartFlag == YES) {
  294. log_info("** AC Remote \n");
  295. pAcChargingInfo->RemoteStartFlag = NO;
  296. strcpy((char *)pAcChargingInfo->StartUserId, "");
  297. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = NO;
  298. _status = S_PREPARNING;
  299. } else if (ShmSysConfigAndInfo->SysInfo.OrderCharging == NO_DEFINE) {
  300. log_info("** UserId = %s \n", SysConfig->UserId);
  301. strcpy((char *)pAcChargingInfo->StartUserId, (char *)SysConfig->UserId);
  302. log_info("** CardNumber = %s \n", pAcChargingInfo->StartUserId);
  303. strcpy((char *)SysConfig->UserId, "");
  304. ShmSysConfigAndInfo->SysInfo.WaitForPlugit = NO;
  305. _status = S_PREPARNING;
  306. }
  307. } else if (pAcChargingInfo->SystemStatus == S_CHARGING) {
  308. if (OcppRemoteStop(1)) {
  309. _status = S_TERMINATING;
  310. }
  311. }
  312. //printf("_status = %d \n", _status);
  313. if (_status != S_NONE && pAcChargingInfo->SystemStatus != _status) {
  314. pAcChargingInfo->SystemStatus = _status;
  315. }
  316. // 設定限制最大充電電流 >= 6 ~ <= 32
  317. switch (pAcChargingInfo->SystemStatus) {
  318. case S_IDLE:
  319. case S_ALARM: {
  320. if (isModeChange()) {
  321. pAcChargingInfo->PresentChargedEnergy = 0.0;
  322. pAcChargingInfo->PresentChargingVoltage = 0;
  323. pAcChargingInfo->ChargingFee = 0.0;
  324. strcpy((char *)pAcChargingInfo->StartDateTime, "");
  325. strcpy((char *)pAcChargingInfo->StopDateTime, "");
  326. _beforeChargingTotalEnergy = 0.0;
  327. }
  328. ChangeLedStatus();
  329. }
  330. break;
  331. case S_PREPARNING: {
  332. if (isModeChange()) {
  333. ShmSysConfigAndInfo->SysInfo.SystemPage = _LCM_NONE;
  334. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  335. if (ShmSysConfigAndInfo->SysInfo.OrderCharging != NO_DEFINE) {
  336. ShmSysConfigAndInfo->SysInfo.OrderCharging = NO_DEFINE;
  337. }
  338. gettimeofday(&_ac_preparing, NULL);
  339. }
  340. if (GetChargingEnergy() == PASS) {
  341. //pAcChargingInfo->PresentChargedEnergy = acChargingEnergy.Energy / 100;
  342. _beforeChargingTotalEnergy = acChargingEnergy.Energy;
  343. }
  344. SetLegacyReq(YES);
  345. ChangeLedStatus();
  346. }
  347. break;
  348. case S_CHARGING: {
  349. if (isModeChange()) {
  350. ftime(&_ac_startChargingTime);
  351. OcppStartTransation(1);
  352. ChangeStartOrStopDateTime(YES);
  353. ShmSysConfigAndInfo->SysInfo.CurGunSelectedByAc = DEFAULT_AC_INDEX;
  354. }
  355. if (GetChargingEnergy() == PASS) {
  356. if ((acChargingEnergy.Energy - _beforeChargingTotalEnergy) > 0) {
  357. pAcChargingInfo->PresentChargedEnergy += (acChargingEnergy.Energy - _beforeChargingTotalEnergy) / 100;
  358. if (SysConfig->BillingData.isBilling) {
  359. pAcChargingInfo->ChargingFee += pAcChargingInfo->PresentChargedEnergy * SysConfig->BillingData.Cur_fee;
  360. }
  361. }
  362. _beforeChargingTotalEnergy = acChargingEnergy.Energy;
  363. }
  364. if (GetChargingCurrent() == PASS) {
  365. pAcChargingInfo->PresentChargingPower = (((float)(AC_DEFAULT_VOL * acChargingCurrent.OuputCurrentL1) / 10) / 1000);
  366. }
  367. ftime(&_ac_endChargingTime);
  368. pAcChargingInfo->PresentChargedDuration = DiffTimeb(_ac_startChargingTime, _ac_endChargingTime);
  369. pAcChargingInfo->PresentChargingVoltage = AC_DEFAULT_VOL;
  370. pAcChargingInfo->PresentChargingCurrent = ((float)acChargingCurrent.OuputCurrentL1 / 10);
  371. // 用以判斷是否有在輸出
  372. pAcChargingInfo->IsCharging = acStatus.RelayStatus;
  373. SetCpDuty(SysConfig->AcMaxChargingCurrent);
  374. ChangeLedStatus();
  375. }
  376. break;
  377. case S_TERMINATING: {
  378. if (isModeChange()) {
  379. ChangeStartOrStopDateTime(NO);
  380. gettimeofday(&_ac_charging_comp, NULL);
  381. }
  382. SetLegacyReq(NO);
  383. if (acStatus.RelayStatus == NO) {
  384. pAcChargingInfo->SystemStatus = S_COMPLETE;
  385. }
  386. }
  387. break;
  388. case S_COMPLETE: {
  389. if (isModeChange()) {
  390. gettimeofday(&_ac_charging_comp, NULL);
  391. ftime(&_ac_endChargingTime);
  392. if (strcmp((char *)pAcChargingInfo->StartDateTime, "") != EQUAL) {
  393. // AC 固定為第2把槍
  394. OcppStopTransation(1);
  395. }
  396. ChangeStartOrStopDateTime(NO);
  397. pAcChargingInfo->PresentChargedDuration = DiffTimeb(_ac_startChargingTime, _ac_endChargingTime);
  398. }
  399. }
  400. break;
  401. }
  402. }
  403. }