RelayBoard.c 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. #include <stdio.h> /*標準輸入輸出定義*/
  2. #include <stdlib.h> /*標準函數庫定義*/
  3. #include <string.h>
  4. #include <stdint.h>
  5. #include <time.h>
  6. #include <unistd.h>
  7. #include <sys/time.h>
  8. #include <sys/timeb.h>
  9. #include "../ShareMemory/shmMem.h"
  10. #include "../Config.h"
  11. #include "../Log/log.h"
  12. #include "Module_InternalComm.h"
  13. #include "internalComm.h"
  14. //------------------------------------------------------------------------------
  15. static struct SysConfigData *pSysConfig = NULL;
  16. static struct SysInfoData *pSysInfo = NULL;
  17. static struct AlarmCodeData *pAlarmCode = NULL;
  18. static struct RelayModuleData *ShmRelayModuleData = NULL;
  19. static struct PsuData *ShmPsuData = NULL;
  20. static struct PrimaryMcuData *ShmPrimaryMcuData = NULL;
  21. static DcCommonInfo *ShmDcCommonData = NULL;
  22. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  23. static struct LedModuleData *ShmLedModuleData = NULL;
  24. static struct FanModuleData *ShmFanModuleData = NULL;
  25. static Relay outputRelay = {0};
  26. static Relay regRelay = {0};
  27. static int Uart5Fd = 0;
  28. static struct timeval gFanBoardRunTimer;
  29. static uint16_t _setFanSpeed = 0;
  30. static uint16_t fanSpeedSmoothValue = 1000;
  31. static Led_Color cur_led_color = {COLOR_MIN_LV};
  32. static Led_Color led_color;
  33. static struct timeval _led_priority_time;
  34. int ReservationLed;
  35. time_t ReservationFlashTimer;
  36. //static bool _isRelayWelding[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  37. //static struct timeval _checkRelayWeldingTimer[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  38. //static bool _isOutputNoneMatch[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  39. //static struct timeval _checkOutputNoneMatchTimer[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  40. static bool _isOvpChkTimeFlag[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY]; //DS60-120 add
  41. static struct timeval _checkOutputVolProtectTimer[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY]; //DS60-120 add
  42. static void SetLedColor(void);
  43. static struct timeval _close_ac_contactor;
  44. //------------------------------------------------------------------------------
  45. static void RunForceStopProcess(void)
  46. {
  47. static bool isCriticalStop = NO;
  48. static struct timeval _psuCriticalStop;
  49. uint32_t _timebuf;
  50. if (isCriticalStop == NO) {
  51. isCriticalStop = YES;
  52. gettimeofday(&_psuCriticalStop, NULL);
  53. } else {
  54. _timebuf = GetTimeoutValue(_psuCriticalStop);
  55. if (_timebuf < 0) {
  56. gettimeofday(&_psuCriticalStop, NULL);
  57. } else {
  58. if (_timebuf / 1000 >= (FORCE_STOP_TIME * 1000)) {
  59. isCriticalStop = NO;
  60. pAlarmCode->AlarmEvents.bits.PsuFailureAlarm = NORMAL;
  61. }
  62. }
  63. }
  64. }
  65. static void StopCheckRelayInfo(uint8_t _chkIndex)
  66. {
  67. if (ShmDcCommonData->CheckRelayStatus[_chkIndex] != STOP) {
  68. ShmDcCommonData->CheckRelayStatus[_chkIndex] = STOP;
  69. }
  70. }
  71. static void StartCheckRelayInfo(uint8_t _chkIndex, uint8_t toState)
  72. {
  73. // SMR1 *2 + SMR2 * 2 + Parallel * 2
  74. static struct timeval lastCheckRelayStateTimer[6] = {0};
  75. //uint8_t *pCheckRelayState = (uint8_t *)ShmDcCommonData->CheckRelayStatus[_chkIndex];
  76. if (ShmDcCommonData->CheckRelayStatus[_chkIndex] == STOP) {
  77. gettimeofday(&lastCheckRelayStateTimer[_chkIndex], NULL);
  78. ShmDcCommonData->CheckRelayStatus[_chkIndex] = START;
  79. } else {
  80. if ((GetTimeoutValue(lastCheckRelayStateTimer[_chkIndex]) / 1000000) >= 1) {
  81. //log_info("relay welding or driving fault = %d ", _chkIndex);
  82. if (toState == 1) {
  83. ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_DRIVING;
  84. } else {
  85. ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_WELDING;
  86. }
  87. gettimeofday(&lastCheckRelayStateTimer[_chkIndex], NULL);
  88. }
  89. }
  90. }
  91. static uint8_t getCommTargetID(uint8_t index)
  92. {
  93. uint8_t targetID = 0;
  94. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  95. if (pSysConfig->TotalConnectorCount == 1) {
  96. if (strncmp((char *)&pSysConfig->ModelName[7], "0", 1) != 0) {
  97. targetID = 0x01;
  98. } else if (strncmp((char *)&pSysConfig->ModelName[9], "0", 1) != 0) {
  99. targetID = 0x02;
  100. }
  101. } else {
  102. targetID = pDcChargingInfo->Evboard_id;
  103. }
  104. return targetID;
  105. }
  106. /*static void MatchRelayStatus(void)
  107. {
  108. // 因為 AC Contactor 沒有 Feedback,所以暫時先這樣處理
  109. //regRelay.relay_event.bits.AC_Contactor = outputRelay.relay_event.bits.AC_Contactor;
  110. //pSysInfo->AcContactorStatus =
  111. // regRelay.relay_event.bits.AC_Contactor =
  112. // outputRelay.relay_event.bits.AC_Contactor;
  113. regRelay.relay_event.bits.CCS_Precharge = outputRelay.relay_event.bits.CCS_Precharge;
  114. regRelay.relay_event.bits.Gun1_P = outputRelay.relay_event.bits.Gun1_P;
  115. regRelay.relay_event.bits.Gun1_N = outputRelay.relay_event.bits.Gun1_N;
  116. regRelay.relay_event.bits.Gun2_P = outputRelay.relay_event.bits.Gun2_P;
  117. regRelay.relay_event.bits.Gun2_N = outputRelay.relay_event.bits.Gun2_N;
  118. regRelay.relay_event.bits.Gun1_Parallel_P = outputRelay.relay_event.bits.Gun1_Parallel_P;
  119. regRelay.relay_event.bits.Gun1_Parallel_N = outputRelay.relay_event.bits.Gun1_Parallel_N;
  120. }
  121. */
  122. static bool IsNoneMatchRelayStatus(void)
  123. {
  124. bool result = false;
  125. if (
  126. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  127. (regRelay.relay_event.bits.AC_Contactor != outputRelay.relay_event.bits.AC_Contactor) ||
  128. (regRelay.relay_event.bits.CCS_Precharge != outputRelay.relay_event.bits.CCS_Precharge) ||
  129. #endif //!defined DD360 && !defined DD360Audi
  130. (regRelay.relay_event.bits.Gun1_P != outputRelay.relay_event.bits.Gun1_P) ||
  131. (regRelay.relay_event.bits.Gun1_N != outputRelay.relay_event.bits.Gun1_N) ||
  132. (regRelay.relay_event.bits.Gun2_P != outputRelay.relay_event.bits.Gun2_P) ||
  133. (regRelay.relay_event.bits.Gun2_N != outputRelay.relay_event.bits.Gun2_N)
  134. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  135. ||
  136. (regRelay.relay_event.bits.Gun1_Parallel_P != outputRelay.relay_event.bits.Gun1_Parallel_P) ||
  137. (regRelay.relay_event.bits.Gun1_Parallel_N != outputRelay.relay_event.bits.Gun1_Parallel_N)
  138. #endif //!defined DD360 && !defined DD360Audi
  139. ) {
  140. result = true;
  141. }
  142. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  143. if (regRelay.relay_event.bits.AC_Contactor != outputRelay.relay_event.bits.AC_Contactor) {
  144. log_info("AC Contact Relay none match. ");
  145. }
  146. if (regRelay.relay_event.bits.CCS_Precharge != outputRelay.relay_event.bits.CCS_Precharge) {
  147. log_info("CCS Precharge Relay none match. ");
  148. }
  149. #endif //
  150. if (regRelay.relay_event.bits.Gun1_P != outputRelay.relay_event.bits.Gun1_P) {
  151. //log_info("SMR1:D+ Relay none match. ");
  152. StartCheckRelayInfo(RELAY_SMR1_P_STATUS, outputRelay.relay_event.bits.Gun1_P);
  153. } else {
  154. StopCheckRelayInfo(RELAY_SMR1_P_STATUS);
  155. }
  156. if (regRelay.relay_event.bits.Gun1_N != outputRelay.relay_event.bits.Gun1_N) {
  157. //log_info("SMR1:D- Relay none match. ");
  158. StartCheckRelayInfo(RELAY_SMR1_N_STATUS, outputRelay.relay_event.bits.Gun1_N);
  159. } else {
  160. StopCheckRelayInfo(RELAY_SMR1_N_STATUS);
  161. }
  162. if (regRelay.relay_event.bits.Gun2_P != outputRelay.relay_event.bits.Gun2_P) {
  163. //log_info("SMR2:D+ Relay none match. ");
  164. StartCheckRelayInfo(RELAY_SMR2_P_STATUS, outputRelay.relay_event.bits.Gun2_P);
  165. } else {
  166. StopCheckRelayInfo(RELAY_SMR2_P_STATUS);
  167. }
  168. if (regRelay.relay_event.bits.Gun2_N != outputRelay.relay_event.bits.Gun2_N) {
  169. //log_info("SMR2:D- Relay none match. ");
  170. StartCheckRelayInfo(RELAY_SMR2_N_STATUS, outputRelay.relay_event.bits.Gun2_N);
  171. } else {
  172. StopCheckRelayInfo(RELAY_SMR2_N_STATUS);
  173. }
  174. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  175. if (regRelay.relay_event.bits.Gun1_Parallel_P != outputRelay.relay_event.bits.Gun1_Parallel_P) {
  176. //log_info("Parallel:D+ Relay none match. ");
  177. StartCheckRelayInfo(RELAY_PARA_P_STATUS, outputRelay.relay_event.bits.Gun1_Parallel_P);
  178. } else {
  179. StopCheckRelayInfo(RELAY_PARA_P_STATUS);
  180. }
  181. if (regRelay.relay_event.bits.Gun1_Parallel_N != outputRelay.relay_event.bits.Gun1_Parallel_N) {
  182. //log_info("Parallel:D- Relay none match. ");
  183. StartCheckRelayInfo(RELAY_PARA_N_STATUS, outputRelay.relay_event.bits.Gun1_Parallel_N);
  184. } else {
  185. StopCheckRelayInfo(RELAY_PARA_N_STATUS);
  186. }
  187. #endif //
  188. return result;
  189. }
  190. static void SetParalleRelayStatus(void)
  191. {
  192. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  193. return;
  194. #endif //!defined DD360 || !defined DD360Audi || !defined DD360ComBox
  195. struct ChargingInfoData *pDcChargingInfo0 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  196. struct ChargingInfoData *pDcChargingInfo1 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
  197. // 之後雙槍單模機種,橋接都會上
  198. if (pSysConfig->TotalConnectorCount >= 2) {
  199. if (pDcChargingInfo0->SystemStatus == S_BOOTING || pDcChargingInfo1->SystemStatus == S_BOOTING ||
  200. (pDcChargingInfo0->SystemStatus == S_IDLE && pDcChargingInfo1->SystemStatus == S_IDLE)) {
  201. // 初始化~ 不搭橋接
  202. if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
  203. outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
  204. } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
  205. outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
  206. }
  207. } else {
  208. if (pDcChargingInfo0->IsReadyToCharging == YES ||
  209. pDcChargingInfo1->IsReadyToCharging == YES) {
  210. // ************需考慮在切換中 - 切開 relay 與搭回 relay 的時機點************
  211. if (pSysInfo->MainChargingMode == _MAIN_CHARGING_MODE_MAX) {
  212. if (pSysInfo->ReAssignedFlag < _REASSIGNED_RELAY_M_TO_A) {
  213. // 最大充 - 搭上橋接
  214. if (regRelay.relay_event.bits.Gun1_Parallel_N == NO) {
  215. outputRelay.relay_event.bits.Gun1_Parallel_N = YES;
  216. } else if (regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
  217. outputRelay.relay_event.bits.Gun1_Parallel_P = YES;
  218. }
  219. } else {
  220. // 平均充 - 不搭
  221. if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
  222. outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
  223. } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
  224. outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
  225. }
  226. }
  227. } else if (pSysInfo->MainChargingMode == _MAIN_CHARGING_MODE_AVER) {
  228. if (pSysInfo->ReAssignedFlag < _REASSIGNED_RELAY_A_TO_M) {
  229. // 平均充 - 不搭
  230. if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
  231. outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
  232. } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
  233. outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
  234. }
  235. } else {
  236. // 最大充 - 搭上橋接
  237. if (regRelay.relay_event.bits.Gun1_Parallel_N == NO) {
  238. outputRelay.relay_event.bits.Gun1_Parallel_N = YES;
  239. } else if (regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
  240. outputRelay.relay_event.bits.Gun1_Parallel_P = YES;
  241. }
  242. }
  243. }
  244. }
  245. }
  246. }
  247. }
  248. static void GetGfdAdc(void)
  249. {
  250. int gunIndex = 0;
  251. uint8_t targetID = 0;
  252. struct ChargingInfoData *pDcChargingInfo = NULL;
  253. Gfd gfd_adc = {0};
  254. // define : 每 0.2 ~ 1 秒一次
  255. // occur : <= 75k 歐姆 @ 150 - 750 Vdc
  256. // warning : >= 100 歐姆 && <= 500 歐姆 @ 150-750 Vdc
  257. if (Query_Gfd_Adc(Uart5Fd, ADDR_RELAY, &gfd_adc) == PASS) {
  258. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  259. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  260. if (pDcChargingInfo->Type == 0x09 &&
  261. !pSysConfig->AlwaysGfdFlag
  262. ) {
  263. if ((pDcChargingInfo->PresentChargingVoltage * 10) >= VOUT_MIN_VOLTAGE) {
  264. pDcChargingInfo->GroundFaultStatus = GFD_PASS;
  265. }
  266. continue;
  267. }
  268. targetID = getCommTargetID(gunIndex);
  269. if (targetID == 0x01) {
  270. //if (gfd_adc.result_conn1 == GFD_WARNING) {
  271. // gfd_adc.result_conn1 = GFD_PASS;
  272. //}
  273. pDcChargingInfo->GroundFaultStatus = gfd_adc.result_conn1;
  274. //log_info("GFD ******** Result = %d, Step = %d, R = %d, Vol = %d ",
  275. // pDcChargingInfo->GroundFaultStatus,
  276. // gfd_adc.rb_step_1,
  277. // gfd_adc.Resister_conn1,
  278. // gfd_adc.voltage_conn1);
  279. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  280. log_info("GFD Fail. index = %d, Step = %d, R = %d, Vol = %d ",
  281. gunIndex,
  282. gfd_adc.rb_step_1,
  283. gfd_adc.Resister_conn1,
  284. gfd_adc.voltage_conn1);
  285. } else if (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
  286. pDcChargingInfo->GroundFaultStatus == GFD_WARNING
  287. ) {
  288. if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  289. log_info("GFD Warning. index = %d, Result = %d, R = %d, Vol = %d ",
  290. gunIndex,
  291. pDcChargingInfo->GroundFaultStatus,
  292. gfd_adc.Resister_conn1,
  293. gfd_adc.voltage_conn1);
  294. }
  295. }
  296. } else if (targetID == 0x02) {
  297. //if (gfd_adc.result_conn2 == GFD_WARNING) {
  298. // gfd_adc.result_conn2 = GFD_PASS;
  299. //}
  300. pDcChargingInfo->GroundFaultStatus = gfd_adc.result_conn2;
  301. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  302. log_info("GFD Fail. index = %d, Step = %d, R = %d, Vol = %d ",
  303. gunIndex,
  304. gfd_adc.rb_step_2,
  305. gfd_adc.Resister_conn2,
  306. gfd_adc.voltage_conn2);
  307. } else if (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
  308. pDcChargingInfo->GroundFaultStatus == GFD_WARNING
  309. ) {
  310. if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
  311. log_info("GFD Warning. index = %d, Result = %d, R = %d, Vol = %d ",
  312. gunIndex,
  313. pDcChargingInfo->GroundFaultStatus,
  314. gfd_adc.Resister_conn1,
  315. gfd_adc.voltage_conn1);
  316. }
  317. }
  318. }
  319. }
  320. }
  321. }
  322. void CheckOutputPowerOverCarReq(uint8_t index)
  323. {
  324. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  325. float fireV = pDcChargingInfo->FireChargingVoltage;
  326. float carV = pDcChargingInfo->EvBatteryMaxVoltage * 10;
  327. if ((pDcChargingInfo->EvBatterytargetVoltage * 10) > 1500 &&
  328. (pDcChargingInfo->Type == _Type_Chademo ||
  329. pDcChargingInfo->Type == _Type_CCS_2 ||
  330. pDcChargingInfo->Type == _Type_GB)) {
  331. if (fireV >= (carV + (carV * 0.02))) {
  332. if (!_isOvpChkTimeFlag[index]) {
  333. if ((pDcChargingInfo->PresentChargingVoltage * 10) >= VOUT_MIN_VOLTAGE * 10) {
  334. gettimeofday(&_checkOutputVolProtectTimer[index], NULL);
  335. _isOvpChkTimeFlag[index] = YES;
  336. }
  337. } else {
  338. log_info("[Module_InternalComm]CheckOutputPowerOverCarReq NG : fire = %f, battery = %f ",
  339. pDcChargingInfo->FireChargingVoltage,
  340. (pDcChargingInfo->EvBatterytargetVoltage * 10));
  341. log_error("[Module_InternalComm]CheckOutputPowerOverCarReq NG : fire = %f, battery = %f ",
  342. pDcChargingInfo->FireChargingVoltage,
  343. (pDcChargingInfo->EvBatterytargetVoltage * 10));
  344. if ((GetTimeoutValue(_checkOutputVolProtectTimer[index]) / 1000) >= OUTPUT_VOL_CHK_TIME) {
  345. if (pDcChargingInfo->Type == _Type_Chademo) {
  346. //pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = YES;
  347. ShmDcCommonData->ConnectErrList[index].GunBits.ChaConnectOVP = YES;
  348. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  349. //pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = YES;
  350. ShmDcCommonData->ConnectErrList[index].GunBits.CCSConnectOVP = YES;
  351. } else if (pDcChargingInfo->Type == _Type_GB) {
  352. //pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = YES;
  353. ShmDcCommonData->ConnectErrList[index].GunBits.GBTConnectOVP = YES;
  354. }
  355. //pDcChargingInfo->StopChargeFlag = YES;
  356. }
  357. }
  358. } else {
  359. if (_isOvpChkTimeFlag[index] == YES) {
  360. _isOvpChkTimeFlag[index] = NO;
  361. }
  362. }
  363. }
  364. }
  365. void ResetDetAlarmStatus(uint8_t gun)
  366. {
  367. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gun);
  368. if (pDcChargingInfo->Type == _Type_Chademo) {
  369. if (pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP == YES) {
  370. pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = NO;
  371. }
  372. } else if (pDcChargingInfo->Type == _Type_GB) {
  373. if (pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP == YES) {
  374. pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = NO;
  375. }
  376. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  377. if (pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP == YES) {
  378. pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = NO;
  379. }
  380. }
  381. }
  382. void CheckAcInputOvpStatus(uint8_t index)
  383. {
  384. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  385. if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == YES ||
  386. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == YES ||
  387. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == YES) {
  388. // if ((pDcChargingInfo->SystemStatus >= S_PREPARNING && pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  389. // (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 && pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1))
  390. // {
  391. // if (pSysInfo->ChargerType == _CHARGER_TYPE_IEC)
  392. // {
  393. // if (_psuInputVolR > VIN_MAX_VOLTAGE_IEC ||
  394. // _psuInputVolS > VIN_MAX_VOLTAGE_IEC ||
  395. // _psuInputVolT > VIN_MAX_VOLTAGE_IEC)
  396. // {
  397. // log_info("IEC _psuInputVolR = %f, _psuInputVolS = %f, _psuInputVolT = %f ",
  398. // _psuInputVolR, _psuInputVolS, _psuInputVolT);
  399. // pDcChargingInfo->StopChargeFlag = YES;
  400. // }
  401. //
  402. // }
  403. // else if (pSysInfo->ChargerType == _CHARGER_TYPE_UL)
  404. // {
  405. // if (_psuInputVolR > VIN_MAX_VOLTAGE_UL ||
  406. // _psuInputVolS > VIN_MAX_VOLTAGE_UL ||
  407. // _psuInputVolT > VIN_MAX_VOLTAGE_UL)
  408. // {
  409. // log_info("UL _psuInputVolR = %f, _psuInputVolS = %f, _psuInputVolT = %f ",
  410. // _psuInputVolR, _psuInputVolS, _psuInputVolT);
  411. // pDcChargingInfo->StopChargeFlag = YES;
  412. // }
  413. // }
  414. // }
  415. // else
  416. //log_info("CheckAcInputOvpStatus");
  417. pDcChargingInfo->StopChargeFlag = YES;
  418. }
  419. }
  420. //void CheckOutputVolNoneMatchFire(uint8_t index)
  421. //{
  422. // struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  423. //
  424. // if ((pDcChargingInfo->EvBatterytargetVoltage * 10) > 1500 &&
  425. // (pDcChargingInfo->Type == _Type_Chademo ||
  426. // pDcChargingInfo->Type == _Type_CCS_2 ||
  427. // pDcChargingInfo->Type == _Type_GB)) {
  428. // if (((pDcChargingInfo->PresentChargingVoltage * 10) < pDcChargingInfo->FireChargingVoltage - 300) ||
  429. // ((pDcChargingInfo->PresentChargingVoltage * 10) > pDcChargingInfo->FireChargingVoltage + 300)) {
  430. // if (!_isOutputNoneMatch[index]) {
  431. // _isOutputNoneMatch[index] = YES;
  432. // gettimeofday(&_checkOutputNoneMatchTimer[index], NULL);
  433. // } else {
  434. // if ((GetTimeoutValue(_checkOutputNoneMatchTimer[index]) / 1000) >= 5000) {
  435. // /*log_info("[Module_InternalComm]CheckOutputVolNoneMatchFire NG (%d) : pre = %f, fire = %f ",
  436. // index, (pDcChargingInfo->PresentChargingVoltage * 10), pDcChargingInfo->FireChargingVoltage);
  437. // log_error("[Module_InternalComm]CheckOutputVolNoneMatchFire NG (%d): pre = %f, fire = %f ",
  438. // index, (pDcChargingInfo->PresentChargingVoltage * 10), pDcChargingInfo->FireChargingVoltage);
  439. // pDcChargingInfo->StopChargeFlag = YES;*/
  440. // }
  441. // }
  442. // } else {
  443. // _isOutputNoneMatch[index] = NO;
  444. // }
  445. // }
  446. //}
  447. void CheckPhaseLossStatus(uint8_t index)
  448. {
  449. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  450. if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == YES ||
  451. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == YES ||
  452. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == YES) {
  453. //log_info("CheckPhaseLossStatus");
  454. pDcChargingInfo->StopChargeFlag = YES;
  455. }
  456. }
  457. void SetK1K2RelayStatus(uint8_t index)
  458. {
  459. uint8_t targetID = 0;
  460. PreChargingState *pRegPreChargingState = NULL;
  461. PreChargingState *pOutputPreChargingState = NULL;
  462. GunPNState *pRegGunPNState = NULL;
  463. GunPNState *pOutputGunPNState = NULL;
  464. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  465. if (ShmPsuData->Work_Step >= _TEST_MODE &&
  466. ShmPsuData->Work_Step <= _TEST_MODE) {
  467. if (regRelay.relay_event.bits.Gun1_N == NO) {
  468. outputRelay.relay_event.bits.Gun1_N = YES;
  469. } else if (regRelay.relay_event.bits.Gun1_P == NO) {
  470. outputRelay.relay_event.bits.Gun1_P = YES;
  471. }
  472. return;
  473. }
  474. targetID = getCommTargetID(index);
  475. pRegPreChargingState = (PreChargingState *)&regRelay.relay_event.relay_status[0];
  476. pOutputPreChargingState = (PreChargingState *)&outputRelay.relay_event.relay_status[0];
  477. if (targetID == 0x01) {
  478. pRegGunPNState = (GunPNState *)&regRelay.relay_event.relay_status[1];
  479. pOutputGunPNState = (GunPNState *)&outputRelay.relay_event.relay_status[1];
  480. } else if (targetID == 0x02) {
  481. pRegGunPNState = (GunPNState *)&regRelay.relay_event.relay_status[2];
  482. pOutputGunPNState = (GunPNState *)&outputRelay.relay_event.relay_status[2];
  483. }
  484. switch (pDcChargingInfo->SystemStatus) {
  485. case S_BOOTING:
  486. case S_IDLE:
  487. case S_AUTHORIZING:
  488. case S_REASSIGN_CHECK:
  489. case S_REASSIGN:
  490. case S_PREPARNING:
  491. case S_PREPARING_FOR_EV:
  492. if (pRegGunPNState->GunP == YES) {
  493. pOutputGunPNState->GunP = NO;
  494. } else if (pRegGunPNState->GunN == YES) {
  495. pOutputGunPNState->GunN = NO;
  496. }
  497. if (targetID == 0x02 && pDcChargingInfo->Type == _Type_CCS_2) {
  498. if (pRegPreChargingState->CcsPrecharge == YES) {
  499. pOutputPreChargingState->CcsPrecharge = NO;
  500. }
  501. }
  502. break;
  503. case S_PREPARING_FOR_EVSE:
  504. case S_CHARGING:
  505. //if (pDcChargingInfo->RelayWeldingCheck != YES) {
  506. // break;
  507. //}
  508. if (pRegGunPNState->GunN == NO) {
  509. if (pDcChargingInfo->GroundFaultStatus != GFD_FAIL) {
  510. pOutputGunPNState->GunN = YES;
  511. } else {
  512. pOutputGunPNState->GunN = NO;
  513. }
  514. } else {
  515. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  516. pOutputGunPNState->GunN = NO;
  517. }
  518. }
  519. if (pRegGunPNState->GunP == NO) {
  520. if (pDcChargingInfo->GroundFaultStatus != GFD_FAIL) {
  521. pOutputGunPNState->GunP = YES;
  522. } else {
  523. pOutputGunPNState->GunP = NO;
  524. }
  525. } else {
  526. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  527. pOutputGunPNState->GunP = NO;
  528. }
  529. }
  530. break;
  531. case S_TERMINATING:
  532. case S_COMPLETE:
  533. case S_ALARM:
  534. if ((pDcChargingInfo->PresentChargingCurrent * 10) <= SEFETY_SWITCH_RELAY_CUR) {
  535. pOutputGunPNState->GunP = NO;
  536. pOutputGunPNState->GunN = NO;
  537. }
  538. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  539. pOutputGunPNState->GunP = NO;
  540. pOutputGunPNState->GunN = NO;
  541. }
  542. break;
  543. case S_CCS_PRECHARGE_ST0:
  544. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  545. break;
  546. #endif //defined DD360 || defined DD360Audi || defined DD360ComBox
  547. //if (pDcChargingInfo->Type == _Type_CCS_2 && targetID == 0x02) {
  548. // if (pRegPreChargingState->CcsPrecharge == NO) {
  549. // pOutputPreChargingState->CcsPrecharge = YES;
  550. // } else if (pRegPreChargingState->CcsPrecharge == YES) {
  551. // pRegGunPNState->GunP = NO;
  552. // }
  553. //}
  554. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  555. pOutputGunPNState->GunP = NO;
  556. pOutputGunPNState->GunN = NO;
  557. }
  558. break;
  559. case S_CCS_PRECHARGE_ST1:
  560. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  561. break;
  562. #endif //defined DD360 || defined DD360Audi || defined DD360ComBox
  563. //if (pDcChargingInfo->Type == _Type_CCS_2 && targetID == 0x02) {
  564. // if (pRegGunPNState->GunP == NO) {
  565. // pOutputGunPNState->GunP = YES;
  566. // } else if (pRegGunPNState->GunP == YES) {
  567. // pOutputPreChargingState->CcsPrecharge = NO;
  568. // }
  569. //}
  570. if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
  571. pOutputGunPNState->GunP = NO;
  572. pOutputGunPNState->GunN = NO;
  573. }
  574. break;
  575. }
  576. }
  577. // 確認 K1 K2 relay 的狀態
  578. void CheckK1K2RelayOutput(uint8_t index)
  579. {
  580. uint8_t targetID = 0;
  581. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  582. targetID = getCommTargetID(index);
  583. switch (targetID) {
  584. case 0x01:
  585. if (regRelay.relay_event.bits.Gun1_N == YES && regRelay.relay_event.bits.Gun1_P == YES) {
  586. pDcChargingInfo->RelayK1K2Status = YES;
  587. } else {
  588. pDcChargingInfo->RelayK1K2Status = NO;
  589. }
  590. if (pDcChargingInfo->Type == _Type_CCS_2) {
  591. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  592. if (regRelay.relay_event.bits.Gun1_N == YES && regRelay.relay_event.bits.CCS_Precharge == YES) {
  593. pDcChargingInfo->RelayKPK2Status = YES;
  594. } else {
  595. pDcChargingInfo->RelayKPK2Status = NO;
  596. }
  597. #else
  598. if (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0) {
  599. pDcChargingInfo->RelayKPK2Status = YES;
  600. } else {
  601. pDcChargingInfo->RelayKPK2Status = NO;
  602. }
  603. #endif //!defined DD360 && !defined DD360Audi
  604. }
  605. break;
  606. case 0x02:
  607. if (regRelay.relay_event.bits.Gun2_N == YES &&
  608. regRelay.relay_event.bits.Gun2_P == YES) {
  609. pDcChargingInfo->RelayK1K2Status = YES;
  610. } else {
  611. pDcChargingInfo->RelayK1K2Status = NO;
  612. }
  613. if (pDcChargingInfo->Type == _Type_CCS_2) {
  614. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  615. if (regRelay.relay_event.bits.Gun2_N == YES &&
  616. regRelay.relay_event.bits.CCS_Precharge == YES) {
  617. pDcChargingInfo->RelayKPK2Status = YES;
  618. } else {
  619. pDcChargingInfo->RelayKPK2Status = NO;
  620. }
  621. #else
  622. if (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0) {
  623. pDcChargingInfo->RelayKPK2Status = YES;
  624. } else {
  625. pDcChargingInfo->RelayKPK2Status = NO;
  626. }
  627. #endif //!defined DD360 && !defined DD360Audi
  628. }
  629. break;
  630. }
  631. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  632. //DS60-120 add
  633. if (pSysInfo->BridgeRelayStatus == YES) {
  634. if (regRelay.relay_event.bits.Gun1_Parallel_N == NO &&
  635. regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
  636. pSysInfo->BridgeRelayStatus = NO;
  637. }
  638. } else if (pSysInfo->BridgeRelayStatus == NO) {
  639. if (regRelay.relay_event.bits.Gun1_Parallel_N == YES &&
  640. regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
  641. pSysInfo->BridgeRelayStatus = YES;
  642. }
  643. }
  644. #else
  645. pSysInfo->BridgeRelayStatus = YES;
  646. #endif //!defined DD360 && !defined DD360Audi
  647. }
  648. void SetGfdConfig(uint8_t index, uint8_t resister)
  649. {
  650. Gfd_config gfd_config = {
  651. .index = index,
  652. .state = resister,
  653. };
  654. //log_info("************************GFD Vol = %d, GFD Res = %d ", gfd_config.reqVol, gfd_config.resister);
  655. if (Config_Gfd_Value(Uart5Fd, ADDR_RELAY, &gfd_config) == PASS) {
  656. // log_info("Set reqVol = %f, resister = %d ",
  657. // gfd_config.reqVol,
  658. // gfd_config.resister);
  659. }
  660. }
  661. void CableCheckDetected(uint8_t index)
  662. {
  663. uint8_t targetID = 0;
  664. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  665. // Cable Check
  666. // 當火線上的電壓 = 車端要求的電壓電流
  667. // _chargingData[targetGun]->EvBatterytargetVoltage
  668. // 才可以開始偵測 1s
  669. // Warning : Rgfd <= 150 歐/V 假設電壓為 500V 則~ Rgfd <= 75000 歐
  670. // Pre-Warning : 150 歐/V < Rgfd <= 500 歐/V 假設電壓為 500V 則 75000 歐 < Rgfd <= 250000
  671. // SO Normal : Rgfd > 500 歐/V 假設電壓為 500 V 則 Rgfd > 250000 歐
  672. if (pSysConfig->TotalConnectorCount == 1) {
  673. if (strncmp((char *)&pSysConfig->ModelName[7], "0", 1) != 0) {
  674. targetID = 0;
  675. } else if (strncmp((char *)&pSysConfig->ModelName[9], "0", 1) != 0) {
  676. targetID = 1;
  677. }
  678. } else {
  679. targetID = index;
  680. }
  681. if ((pDcChargingInfo->Type >= _Type_Chademo &&
  682. pDcChargingInfo->Type <= _Type_GB) ||
  683. (pDcChargingInfo->Type == 0x09 &&
  684. pSysConfig->AlwaysGfdFlag)
  685. ) {
  686. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  687. pDcChargingInfo->SystemStatus < S_TERMINATING) ||
  688. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  689. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  690. ) {
  691. //if ((pDcChargingInfo->SystemStatus == S_PREPARING_FOR_EVSE) &&
  692. // (pDcChargingInfo->RelayWeldingCheck == YES)
  693. // ) {
  694. if (pDcChargingInfo->SystemStatus == S_PREPARING_FOR_EVSE) {
  695. SetGfdConfig(targetID, GFD_CABLECHK);
  696. } else if ((pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0) &&
  697. (pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  698. ) {
  699. SetGfdConfig(targetID, GFD_PRECHARGE);
  700. } else if ((pDcChargingInfo->SystemStatus >= S_CHARGING) &&
  701. (pDcChargingInfo->SystemStatus < S_TERMINATING)
  702. ) {
  703. if ((pDcChargingInfo->Type == _Type_GB) ||
  704. (pDcChargingInfo->Type == _Type_Chademo)
  705. ) {
  706. SetGfdConfig(targetID, GFD_IDLE);
  707. } else {
  708. SetGfdConfig(targetID, GFD_CHARGING);
  709. }
  710. }
  711. }
  712. else if(pDcChargingInfo->SystemStatus == S_TERMINATING || pDcChargingInfo->SystemStatus == S_ALARM)
  713. {
  714. if (pDcChargingInfo->Type == _Type_CCS_2)
  715. {
  716. SetGfdConfig(targetID, GFD_CHARGING);
  717. }
  718. } else {
  719. SetGfdConfig(targetID, GFD_IDLE);
  720. }
  721. }
  722. }
  723. // 讀取 Relay 狀態
  724. void GetRelayOutputStatus(void)
  725. {
  726. if (Query_Relay_Output(Uart5Fd, ADDR_RELAY, &regRelay) == PASS) {
  727. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  728. regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
  729. #endif //!defined DD360 && !defined DD360Audi
  730. }
  731. }
  732. // AC 三相輸入電壓
  733. void GetPresentInputVol(void)
  734. {
  735. static uint8_t _threePhaseOvp[3] = {0, 0, 0}; //DS60-120 add
  736. static uint8_t _threePhaseUvp[3] = {0, 0, 0}; //DS60-120 add
  737. PresentInputVoltage inputVoltage = {0};
  738. if (Query_Present_InputVoltage(Uart5Fd, ADDR_RELAY, &inputVoltage) == PASS) {
  739. // resolution : 0.1
  740. pSysInfo->InputVoltageR = ShmRelayModuleData->InputL1Volt = inputVoltage.L1N_L12;
  741. pSysInfo->InputVoltageS = ShmRelayModuleData->InputL2Volt = inputVoltage.L2N_L23;
  742. pSysInfo->InputVoltageT = ShmRelayModuleData->InputL3Volt = inputVoltage.L3N_L31;
  743. //********************************************************************************************************//
  744. // Vin (UVP)
  745. if (pSysInfo->ChargerType == _CHARGER_TYPE_IEC) {
  746. if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == NO) {
  747. if (inputVoltage.L1N_L12 < VIN_MIN_VOLTAGE_IEC) {
  748. log_info("In Uvp L1N_L12 = %f ", inputVoltage.L1N_L12);
  749. if (_threePhaseUvp[0] >= OVP_UVP_CHK_COUNT) {
  750. pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = YES;
  751. } else {
  752. _threePhaseUvp[0] += 1;
  753. }
  754. }
  755. } else {
  756. if (inputVoltage.L1N_L12 > VIN_MIN_REV_VOLTAGE_IEC) {
  757. pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = NO;
  758. _threePhaseUvp[0] = 0;
  759. }
  760. }
  761. if (pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == NO) {
  762. if (inputVoltage.L2N_L23 < VIN_MIN_VOLTAGE_IEC) {
  763. log_info("In Uvp L2N_L23 = %f ", inputVoltage.L2N_L23);
  764. if (_threePhaseUvp[1] >= OVP_UVP_CHK_COUNT) {
  765. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = YES;
  766. } else {
  767. _threePhaseUvp[1] += 1;
  768. }
  769. }
  770. } else {
  771. if (inputVoltage.L2N_L23 > VIN_MIN_REV_VOLTAGE_IEC) {
  772. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = NO;
  773. _threePhaseUvp[1] = 0;
  774. }
  775. }
  776. if (pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == NO) {
  777. if (inputVoltage.L3N_L31 < VIN_MIN_VOLTAGE_IEC) {
  778. log_info("In Uvp L3N_L31 = %f ", inputVoltage.L3N_L31);
  779. if (_threePhaseUvp[2] >= OVP_UVP_CHK_COUNT) {
  780. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = YES;
  781. } else {
  782. _threePhaseUvp[2] += 1;
  783. }
  784. }
  785. } else {
  786. if (inputVoltage.L3N_L31 > VIN_MIN_REV_VOLTAGE_IEC) {
  787. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = NO;
  788. _threePhaseUvp[2] = 0;
  789. }
  790. }
  791. } else if (pSysInfo->ChargerType == _CHARGER_TYPE_UL) {
  792. if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == NO) {
  793. if (inputVoltage.L1N_L12 < VIN_MIN_VOLTAGE_UL) {
  794. log_info("In Uvp L1N_L12 = %f ", inputVoltage.L1N_L12);
  795. if (_threePhaseUvp[0] >= OVP_UVP_CHK_COUNT) {
  796. pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = YES;
  797. } else {
  798. _threePhaseUvp[0] += 1;
  799. }
  800. }
  801. } else {
  802. if (inputVoltage.L1N_L12 > VIN_MIN_REV_VOLTAGE_UL) {
  803. pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = NO;
  804. _threePhaseUvp[0] = 0;
  805. }
  806. }
  807. if (pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == NO) {
  808. if (inputVoltage.L2N_L23 < VIN_MIN_VOLTAGE_UL) {
  809. log_info("In Uvp L2N_L23 = %f ", inputVoltage.L2N_L23);
  810. if (_threePhaseUvp[1] >= OVP_UVP_CHK_COUNT) {
  811. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = YES;
  812. } else {
  813. _threePhaseUvp[1] += 1;
  814. }
  815. }
  816. } else {
  817. if (inputVoltage.L2N_L23 > VIN_MIN_REV_VOLTAGE_UL) {
  818. pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = NO;
  819. _threePhaseUvp[1] = 0;
  820. }
  821. }
  822. if (pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == NO) {
  823. if (inputVoltage.L3N_L31 < VIN_MIN_VOLTAGE_UL) {
  824. log_info("In Uvp L3N_L31 = %f ", inputVoltage.L3N_L31);
  825. if (_threePhaseUvp[2] >= OVP_UVP_CHK_COUNT) {
  826. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = YES;
  827. } else {
  828. _threePhaseUvp[2] += 1;
  829. }
  830. }
  831. } else {
  832. if (inputVoltage.L3N_L31 > VIN_MIN_REV_VOLTAGE_UL) {
  833. pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = NO;
  834. _threePhaseUvp[2] = 0;
  835. }
  836. }
  837. }
  838. //********************************************************************************************************//
  839. // Vin (OVP)
  840. if (pSysInfo->ChargerType == _CHARGER_TYPE_IEC) {
  841. if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == NO) {
  842. if (inputVoltage.L1N_L12 > VIN_MAX_VOLTAGE_IEC) {
  843. log_info("In Ovp L1N_L12 = %f ", inputVoltage.L1N_L12);
  844. if (_threePhaseOvp[0] >= OVP_UVP_CHK_COUNT) {
  845. pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = YES;
  846. } else {
  847. _threePhaseOvp[0] += 1;
  848. }
  849. }
  850. } else {
  851. if (inputVoltage.L1N_L12 < VIN_MAX_REV_VOLTAGE_IEC) {
  852. pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = NO;
  853. _threePhaseOvp[0] = 0;
  854. }
  855. }
  856. if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
  857. if (inputVoltage.L2N_L23 > VIN_MAX_VOLTAGE_IEC) {
  858. log_info("In Ovp L2N_L23 = %f ", inputVoltage.L2N_L23);
  859. if (_threePhaseOvp[1] >= OVP_UVP_CHK_COUNT) {
  860. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = YES;
  861. } else {
  862. _threePhaseOvp[1] += 1;
  863. }
  864. }
  865. } else {
  866. if (inputVoltage.L2N_L23 < VIN_MAX_REV_VOLTAGE_IEC) {
  867. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = NO;
  868. _threePhaseOvp[1] = 0;
  869. }
  870. }
  871. if (pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == NO) {
  872. if (inputVoltage.L3N_L31 > VIN_MAX_VOLTAGE_IEC) {
  873. log_info("In Ovp L3N_L31 = %f ", inputVoltage.L3N_L31);
  874. if (_threePhaseOvp[2] >= OVP_UVP_CHK_COUNT) {
  875. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = YES;
  876. } else {
  877. _threePhaseOvp[2] += 1;
  878. }
  879. }
  880. } else {
  881. if (inputVoltage.L3N_L31 < VIN_MAX_REV_VOLTAGE_IEC) {
  882. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = NO;
  883. _threePhaseOvp[2] = 0;
  884. }
  885. }
  886. } else if (pSysInfo->ChargerType == _CHARGER_TYPE_UL) {
  887. if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == NO) {
  888. if (inputVoltage.L1N_L12 > VIN_MAX_VOLTAGE_UL) {
  889. log_info("In Ovp L1N_L12 = %f ", inputVoltage.L1N_L12);
  890. if (_threePhaseOvp[0] >= OVP_UVP_CHK_COUNT) {
  891. pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = YES;
  892. } else {
  893. _threePhaseOvp[0] += 0;
  894. }
  895. }
  896. } else {
  897. if (inputVoltage.L1N_L12 < VIN_MAX_REV_VOLTAGE_UL) {
  898. pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = NO;
  899. _threePhaseOvp[0] = 0;
  900. }
  901. }
  902. if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
  903. if (inputVoltage.L2N_L23 > VIN_MAX_VOLTAGE_UL) {
  904. log_info("In Ovp L2N_L23 = %f ", inputVoltage.L2N_L23);
  905. if (_threePhaseOvp[1] >= OVP_UVP_CHK_COUNT) {
  906. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = YES;
  907. } else {
  908. _threePhaseOvp[1] += 0;
  909. }
  910. }
  911. } else {
  912. if (inputVoltage.L2N_L23 < VIN_MAX_REV_VOLTAGE_UL) {
  913. pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = NO;
  914. _threePhaseOvp[1] = 0;
  915. }
  916. }
  917. if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
  918. if (inputVoltage.L3N_L31 > VIN_MAX_VOLTAGE_UL) {
  919. log_info("In Ovp L3N_L31 = %f ", inputVoltage.L3N_L31);
  920. if (_threePhaseOvp[2] >= OVP_UVP_CHK_COUNT) {
  921. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = YES;
  922. } else {
  923. _threePhaseOvp[2] += 1;
  924. }
  925. }
  926. } else {
  927. if (inputVoltage.L3N_L31 < VIN_MAX_REV_VOLTAGE_UL) {
  928. pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = NO;
  929. _threePhaseOvp[2] = 0;
  930. }
  931. }
  932. }
  933. }
  934. }
  935. // 左右槍的 Relay 前後的輸出電壓
  936. void GetPersentOutputVol(void)
  937. {
  938. uint8_t index = 0;
  939. uint8_t targetID = 0;
  940. struct ChargingInfoData *pDcChargingInfo = NULL;
  941. PresentOutputVoltage outputVoltage = {0};
  942. if (Query_Present_OutputVoltage(Uart5Fd, ADDR_RELAY, &outputVoltage) != PASS) {
  943. return;
  944. }
  945. //log_info("Conn1 fuse 1 = %f ", outputVoltage.behindFuse_Voltage_C1);
  946. //log_info("Conn1 relay 1 = %f ", outputVoltage.behindRelay_Voltage_C1);
  947. //log_info("Conn2 fuse 2 = %f ", outputVoltage.behindFuse_Voltage_C2);
  948. //log_info("Conn2 relay 2 = %f ", outputVoltage.behindRelay_Voltage_C2);
  949. //log_info("outputVoltage.behindFuse_Voltage_C1 = %f ", outputVoltage.behindFuse_Voltage_C1);
  950. //log_info("outputVoltage.behindFuse_Voltage_C2 = %f ", outputVoltage.behindFuse_Voltage_C2);
  951. ShmRelayModuleData->Gun1FuseOutputVolt = outputVoltage.behindFuse_Voltage_C1;
  952. ShmRelayModuleData->Gun1RelayOutputVolt = outputVoltage.behindRelay_Voltage_C1;
  953. ShmRelayModuleData->Gun2FuseOutputVolt = outputVoltage.behindFuse_Voltage_C2;
  954. ShmRelayModuleData->Gun2RelayOutputVolt = outputVoltage.behindRelay_Voltage_C2;
  955. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  956. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  957. targetID = getCommTargetID(index);
  958. switch (targetID) {
  959. case 0x01:
  960. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  961. pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun1RelayOutputVolt;
  962. pDcChargingInfo->PresentChargingCurrent = ((float)ShmRelayModuleData->Gun1FuseOutputVolt) / 10;
  963. pDcChargingInfo->PresentChargingVoltage = ((float)pDcChargingInfo->FireChargingVoltage) / 10;
  964. pDcChargingInfo->FuseChargingVoltage = pDcChargingInfo->FireChargingVoltage;
  965. break;
  966. #endif //defined DD360 || defined DD360Audi || defined DD360ComBox
  967. pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun1RelayOutputVolt;
  968. pDcChargingInfo->FuseChargingVoltage = ShmRelayModuleData->Gun1FuseOutputVolt;
  969. break;
  970. case 0x02:
  971. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  972. pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun2RelayOutputVolt;
  973. pDcChargingInfo->PresentChargingCurrent = ((float)ShmRelayModuleData->Gun2FuseOutputVolt) / 10;
  974. pDcChargingInfo->PresentChargingVoltage = ((float)pDcChargingInfo->FireChargingVoltage) / 10;
  975. pDcChargingInfo->FuseChargingVoltage = pDcChargingInfo->FireChargingVoltage;
  976. break;
  977. #endif //defined DD360 || defined DD360Audi || defined DD360ComBox
  978. pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun2RelayOutputVolt;
  979. pDcChargingInfo->FuseChargingVoltage = ShmRelayModuleData->Gun2FuseOutputVolt;
  980. break;
  981. }
  982. //log_info("%d persent vol = %f, cur = %f",
  983. // index,
  984. // pDcChargingInfo->PresentChargingVoltage,
  985. // pDcChargingInfo->PresentChargingCurrent);
  986. //unsigned short Ovp = 0;
  987. //unsigned short Ocp = 0;
  988. //Ovp = MIN [VOUT_MAX_VOLTAGE, EV_BATTERY_VOLTAGE] // 最大輸出電壓與電池電壓最大值
  989. //Ocp = MIN [IOUT_MAX_CURRENT, EV_CURRENT_REQ] // 最大輸出電流與需求電流最小值
  990. //if (pDcChargingInfo->Type == _Type_Chademo) {
  991. // //Ovp = MaxValue(pDcChargingInfo->MaximumChargingVoltage, pDcChargingInfo->EvBatteryMaxVoltage);
  992. // //Ocp = MaxValue(pDcChargingInfo->PresentChargingCurrent, ShmCHAdeMOData->ev[pDcChargingInfo->type_index].ChargingCurrentRequest);
  993. //} else if (pDcChargingInfo->Type == _Type_CCS_2) {
  994. //}
  995. }
  996. }
  997. void SetRtcData_Relay(void)
  998. {
  999. struct timeb csuTime;
  1000. struct tm *tmCSU;
  1001. Rtc rtc = {0};
  1002. ftime(&csuTime);
  1003. tmCSU = localtime(&csuTime.time);
  1004. // log_info("Time : %04d-%02d-%02d %02d:%02d:%02d ", tmCSU->tm_year + 1900,
  1005. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  1006. // tmCSU->tm_sec);
  1007. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  1008. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  1009. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  1010. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  1011. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  1012. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  1013. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  1014. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  1015. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  1016. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  1017. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  1018. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  1019. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  1020. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  1021. if (Config_Rtc_Data(Uart5Fd, ADDR_RELAY, &rtc) == PASS) {
  1022. //log_info("SetRtc (RB) sucessfully. ");
  1023. }
  1024. }
  1025. void SetModelName_Relay(void)
  1026. {
  1027. if (Config_Model_Name(Uart5Fd, ADDR_RELAY, pSysConfig->ModelName) == PASS) {
  1028. //log_info("Set Model name (RB) PASS = %s ", pSysConfig->ModelName);
  1029. }
  1030. }
  1031. void GetFwAndHwVersion_Relay(void)
  1032. {
  1033. Ver ver = {0};
  1034. if (Query_FW_Ver(Uart5Fd, ADDR_RELAY, &ver) == PASS) {
  1035. // RelayModuleData
  1036. strcpy((char *)ShmRelayModuleData->version, ver.Version_FW);
  1037. // SystemInfo
  1038. strcpy((char *)pSysInfo->RelayModuleFwRev, ver.Version_FW);
  1039. //log_info("GetFwAndHwVersion_Relay s1 = %s ", ver.Version_FW);
  1040. }
  1041. if (Query_HW_Ver(Uart5Fd, ADDR_RELAY, &ver) == PASS) {
  1042. // SystemInfo
  1043. strcpy((char *)pSysInfo->RelayModuleHwRev, ver.Version_FW);
  1044. //log_info("GetFwAndHwVersion_Relay s2 = %s ", ver.Version_HW);
  1045. }
  1046. }
  1047. static void outputRelayInit(int fd)
  1048. {
  1049. memset((uint8_t *)&outputRelay, 0, sizeof(Relay));
  1050. if (Config_Relay_Output(fd, ADDR_RELAY, &outputRelay) != PASS) {
  1051. log_info("Config_Relay_Output fail ");
  1052. }
  1053. }
  1054. static bool IsRelayProcessNeedPause(void)
  1055. {
  1056. bool _pause = false;
  1057. static bool isPause = false;
  1058. struct ChargingInfoData *pDcChargingInfo = NULL;
  1059. for (uint8_t i = 0; i < pSysConfig->TotalConnectorCount; i++)
  1060. {
  1061. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1062. if(pDcChargingInfo->SystemStatus == S_UPDATE)
  1063. {
  1064. SetLedColor();
  1065. _pause = true;
  1066. }
  1067. }
  1068. if(isPause != _pause)
  1069. {
  1070. log_info("Relay Process Now Is %s ", _pause == true ? "Paused" : "Continued");
  1071. }
  1072. isPause = _pause;
  1073. return _pause;
  1074. }
  1075. static void SetFanModuleSpeed(void)
  1076. {
  1077. {
  1078. FanSpeed _fanSpeed = {0};
  1079. _setFanSpeed += fanSpeedSmoothValue;
  1080. if (_setFanSpeed >= ShmFanModuleData->SetFan1Speed) {
  1081. _setFanSpeed = ShmFanModuleData->SetFan1Speed;
  1082. }
  1083. _fanSpeed.speed[0] = _setFanSpeed;
  1084. _fanSpeed.speed[1] = _setFanSpeed;
  1085. _fanSpeed.speed[2] = _setFanSpeed;
  1086. _fanSpeed.speed[3] = _setFanSpeed;
  1087. if (Config_Fan_Speed(Uart5Fd, ADDR_FAN, &_fanSpeed) == PASS) {
  1088. //log_info("successfully Fan");
  1089. }
  1090. }
  1091. }
  1092. // 風扇速度
  1093. static void GetFanSpeed(void)
  1094. {
  1095. FanSpeed fanSpeed = {0};
  1096. //log_info("Get fan board speed ");
  1097. if (Query_Fan_Speed(Uart5Fd, ADDR_FAN, &fanSpeed) == PASS) {
  1098. ShmFanModuleData->PresentFan1Speed = fanSpeed.speed[0];
  1099. ShmFanModuleData->PresentFan2Speed = fanSpeed.speed[1];
  1100. ShmFanModuleData->PresentFan3Speed = fanSpeed.speed[2];
  1101. ShmFanModuleData->PresentFan4Speed = fanSpeed.speed[3];
  1102. // log_info("SystemFanRotaSpeed_1 = %d ", fanSpeed.speed[0]);
  1103. // log_info("SystemFanRotaSpeed_2 = %d ", fanSpeed.speed[1]);
  1104. // log_info("SystemFanRotaSpeed_3 = %d ", fanSpeed.speed[2]);
  1105. // log_info("SystemFanRotaSpeed_4 = %d ", fanSpeed.speed[3]);
  1106. // Config_Fan_Speed(Uart5Fd, ADDR_FAN, &fanSpeed[0]);
  1107. //SysInfoData (SystemFanRotaSpeed)
  1108. }
  1109. }
  1110. static void GetFanSpeedByFunction(void)
  1111. {
  1112. if (ShmDcCommonData->debugflag== YES) {
  1113. return;
  1114. }
  1115. // 風控修改 :
  1116. // ******************************************************* //
  1117. //
  1118. // 當前PSU輸出總 KW PSU Temp
  1119. // 30 x -------------------- x ---------- + 14 x (PSU Temp - 45)
  1120. // 當前樁最大功率 KW 45
  1121. //
  1122. // ******************************************************* //
  1123. // 當前樁最大功率 KW : ShmPsuData->SystemAvailablePower
  1124. uint32_t _maxPower = ShmPsuData->SystemAvailablePower;
  1125. // 當前PSU輸出總 KW & PSU Temp :
  1126. uint8_t temp = 0;
  1127. uint8_t index = 0;
  1128. uint8_t count = 0;
  1129. uint8_t gunIndex = 0;
  1130. uint8_t _temp_diff = 0;
  1131. float power = 0;
  1132. double _pw_rate = 0;
  1133. double _temp_rate = 0;
  1134. struct ChargingInfoData *pDcChargingInfo = NULL;
  1135. for (index = 0; index < ShmPsuData->GroupCount; index++) {
  1136. for (count = 0; count < ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity; count++) {
  1137. if (temp < ShmPsuData->PsuGroup[index].PsuModule[count].ExletTemp) {
  1138. temp = ShmPsuData->PsuGroup[index].PsuModule[count].ExletTemp;
  1139. }
  1140. }
  1141. }
  1142. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  1143. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  1144. power += (pDcChargingInfo->PresentChargingPower * 10);
  1145. }
  1146. if (_maxPower > 0) {
  1147. _pw_rate = power / (double)_maxPower;
  1148. }
  1149. if (temp > 0) {
  1150. _temp_rate = (double)temp / 50;
  1151. }
  1152. if (temp > 45) {
  1153. _temp_diff = temp - 70;
  1154. }
  1155. ShmFanModuleData->TestFanSpeed = (((50 * _pw_rate * _temp_rate) + (0.5 * _temp_diff)) / 100) * MAX_FAN_SPEED;
  1156. if (ShmFanModuleData->TestFanSpeed > MAX_FAN_SPEED) {
  1157. ShmFanModuleData->TestFanSpeed = MAX_FAN_SPEED;
  1158. }
  1159. if (ShmFanModuleData->TestFanSpeed < 0) {
  1160. ShmFanModuleData->TestFanSpeed = 0;
  1161. }
  1162. //
  1163. // printf("power = %f \n", power);
  1164. // printf("_maxPower = %d \n", _maxPower);
  1165. // printf("temp = %d \n", temp);
  1166. //
  1167. // printf("_pw_rate = %f \n", _pw_rate);
  1168. // printf("_temp_rate = %f \n", _temp_rate);
  1169. // printf("_temp_diff = %d \n", _temp_diff);
  1170. // printf("fan rate = %f \n", (30 * _pw_rate * _temp_rate + 14 * _temp_diff));
  1171. // printf("ShmFanModuleData->TestFanSpeed = %d \n", ShmFanModuleData->TestFanSpeed);
  1172. }
  1173. static void SetRtcData_Fan(void)
  1174. {
  1175. struct timeb csuTime;
  1176. struct tm *tmCSU;
  1177. Rtc rtc = {0};
  1178. ftime(&csuTime);
  1179. tmCSU = localtime(&csuTime.time);
  1180. // log_info("Time : %04d-%02d-%02d %02d:%02d:%02d ", tmCSU->tm_year + 1900,
  1181. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  1182. // tmCSU->tm_sec);
  1183. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  1184. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  1185. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  1186. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  1187. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  1188. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  1189. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  1190. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  1191. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  1192. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  1193. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  1194. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  1195. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  1196. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  1197. if (Config_Rtc_Data(Uart5Fd, ADDR_FAN, &rtc) == PASS) {
  1198. //log_info("SetRtc (FB) sucessfully. ");
  1199. }
  1200. }
  1201. static void SetModelName_Fan(void)
  1202. {
  1203. if (Config_Model_Name(Uart5Fd, ADDR_FAN, pSysConfig->ModelName) == PASS) {
  1204. log_info("Set Model name PASS = %s ", pSysConfig->ModelName);
  1205. }
  1206. }
  1207. static void GetFwAndHwVersion_Fan(void)
  1208. {
  1209. Ver ver = {0};
  1210. if (Query_FW_Ver(Uart5Fd, ADDR_FAN, &ver) == PASS) {
  1211. // FanModuleData
  1212. strcpy((char *)ShmFanModuleData->version, ver.Version_FW);
  1213. // SystemInfo
  1214. strcpy((char *)pSysInfo->FanModuleFwRev, ver.Version_FW);
  1215. //log_info("GetFwAndHwVersion_Fan s1 = %s ", ver.Version_FW);
  1216. }
  1217. if (Query_HW_Ver(Uart5Fd, ADDR_FAN, &ver) == PASS) {
  1218. // SystemInfo
  1219. strcpy((char *)pSysInfo->FanModuleHwRev, ver.Version_FW);
  1220. //log_info("GetFwAndHwVersion_Fan s2 = %s ", ver.Version_HW);
  1221. }
  1222. }
  1223. static void fanBoardSelfTest(void)
  1224. {
  1225. if (ShmFanModuleData->SelfTest_Comp == YES) {
  1226. return;
  1227. }
  1228. GetFwAndHwVersion_Fan();
  1229. SetModelName_Fan();
  1230. SetRtcData_Fan();
  1231. sleep(1);
  1232. gettimeofday(&gFanBoardRunTimer, NULL);
  1233. }
  1234. static void fanBoardPorcess(void)
  1235. {
  1236. if (ShmFanModuleData->SelfTest_Comp == NO) {
  1237. return;
  1238. }
  1239. if (ShmFanModuleData->SelfTest_Comp == YES ||
  1240. strlen((char *)pSysInfo->FanModuleFwRev) != 0 ||
  1241. pSysInfo->FanModuleFwRev[0] != '\0') {
  1242. ShmFanModuleData->SelfTest_Comp = YES;
  1243. if (GetTimeoutValue(gFanBoardRunTimer) / 1000 >= 1000) {
  1244. //GetPsuTempForFanSpeed();
  1245. GetFanSpeedByFunction();
  1246. GetFanSpeed();
  1247. pSysInfo->SystemFanRotaSpeed = _setFanSpeed;
  1248. gettimeofday(&gFanBoardRunTimer, NULL);
  1249. ShmFanModuleData->SetFan1Speed = ShmFanModuleData->TestFanSpeed;
  1250. ShmFanModuleData->SetFan2Speed = ShmFanModuleData->TestFanSpeed;
  1251. ShmFanModuleData->SetFan3Speed = ShmFanModuleData->TestFanSpeed;
  1252. ShmFanModuleData->SetFan4Speed = ShmFanModuleData->TestFanSpeed;
  1253. //log_info("set fan = %d ", ShmFanModuleData->SetFan1Speed);
  1254. SetFanModuleSpeed();
  1255. }
  1256. }
  1257. }
  1258. static void GetFwAndHwVersion_Led(void)
  1259. {
  1260. Ver ver = {0};
  1261. if (Query_FW_Ver(Uart5Fd, ADDR_LED, &ver) == PASS) {
  1262. // LedModuleData
  1263. strcpy((char *) ShmLedModuleData->version, ver.Version_FW);
  1264. // SystemInfo
  1265. strcpy((char *) pSysInfo->LedModuleFwRev, ver.Version_FW);
  1266. log_info("GetFwAndHwVersion_Led s1 = %s ", ver.Version_FW);
  1267. ShmLedModuleData->SelfTest_Comp = YES;
  1268. } else {
  1269. //log_info("GetFwAndHwVersion_Led fail ");
  1270. }
  1271. // if (Query_HW_Ver(Uart5Fd, ADDR_LED, &ver) == PASS)
  1272. // {
  1273. // // SystemInfo
  1274. // strcpy((char *) pSysInfo->RelayModuleHwRev, ver.Version_FW);
  1275. // //log_info("GetFwAndHwVersion_Relay s2 = %s ", ver.Version_HW);
  1276. // }
  1277. }
  1278. static bool IsNoneMatchLedColor(void)
  1279. {
  1280. bool result = false;
  1281. if (cur_led_color.Connect_1_Red != led_color.Connect_1_Red ||
  1282. cur_led_color.Connect_1_Green != led_color.Connect_1_Green ||
  1283. cur_led_color.Connect_1_Blue != led_color.Connect_1_Blue ||
  1284. cur_led_color.Connect_2_Red != led_color.Connect_2_Red ||
  1285. cur_led_color.Connect_2_Green != led_color.Connect_2_Green ||
  1286. cur_led_color.Connect_2_Blue != led_color.Connect_2_Blue) {
  1287. result = true;
  1288. }
  1289. return result;
  1290. }
  1291. //static void SetLedColor(struct ChargingInfoData *chargingData_1, struct ChargingInfoData *chargingData_2)
  1292. static void SetLedColor(void)
  1293. {
  1294. static uint8_t _checkLedChanged = 3;
  1295. struct ChargingInfoData *chargingData_1 = NULL;
  1296. struct ChargingInfoData *chargingData_2 = NULL;
  1297. uint8_t _colorBuf = COLOR_MAX_LV * LED_INTENSITY_BRIGHTEST;
  1298. if (pSysConfig->TotalConnectorCount == 1) {
  1299. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  1300. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  1301. } else if (pSysConfig->TotalConnectorCount == 2) {
  1302. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  1303. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
  1304. }
  1305. if (pSysConfig->LedInfo.Intensity == _LED_INTENSITY_DARKEST) {
  1306. _colorBuf = COLOR_MAX_LV * LED_INTENSITY_DARKEST;
  1307. } else if (pSysConfig->LedInfo.Intensity == _LED_INTENSITY_MEDIUM) {
  1308. _colorBuf = COLOR_MAX_LV * LED_INTENSITY_MEDIUM;
  1309. }
  1310. //printf("chargingData_1->SystemStatus=%d\n",chargingData_1->SystemStatus);
  1311. //printf("chargingData_2->SystemStatus=%d\n",chargingData_2->SystemStatus);
  1312. //printf("pSysWarning->Level=%d\n",pSysWarning->Level);
  1313. if (pSysWarning->Level == 2) {
  1314. led_color.Connect_1_Green = COLOR_MIN_LV;
  1315. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1316. led_color.Connect_1_Red = _colorBuf;
  1317. led_color.Connect_2_Green = COLOR_MIN_LV;
  1318. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1319. led_color.Connect_2_Red = _colorBuf;
  1320. } else {
  1321. if (pSysInfo->IsAlternatvieConf) {
  1322. if ((chargingData_1->SystemStatus == S_BOOTING ||
  1323. chargingData_1->SystemStatus == S_IDLE ) &&
  1324. (chargingData_2->SystemStatus == S_BOOTING ||
  1325. chargingData_2->SystemStatus == S_IDLE)) {
  1326. #if defined DD360Audi
  1327. led_color.Connect_1_Green = _colorBuf;
  1328. led_color.Connect_1_Blue = _colorBuf;
  1329. led_color.Connect_1_Red = _colorBuf;
  1330. led_color.Connect_2_Green = _colorBuf;
  1331. led_color.Connect_2_Blue = _colorBuf;
  1332. led_color.Connect_2_Red = _colorBuf;
  1333. #else
  1334. led_color.Connect_1_Green = _colorBuf;
  1335. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1336. led_color.Connect_1_Red = COLOR_MIN_LV;
  1337. led_color.Connect_2_Green = _colorBuf;
  1338. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1339. led_color.Connect_2_Red = COLOR_MIN_LV;
  1340. #endif
  1341. } else if ((chargingData_1->SystemStatus >= S_AUTHORIZING &&
  1342. chargingData_1->SystemStatus <= S_COMPLETE) ||
  1343. (chargingData_1->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1344. chargingData_1->SystemStatus <= S_CCS_PRECHARGE_ST1) ||
  1345. (chargingData_2->SystemStatus >= S_AUTHORIZING &&
  1346. chargingData_2->SystemStatus <= S_COMPLETE) ||
  1347. (chargingData_2->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1348. chargingData_2->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  1349. led_color.Connect_1_Green = COLOR_MIN_LV;
  1350. led_color.Connect_1_Blue = _colorBuf;
  1351. led_color.Connect_1_Red = COLOR_MIN_LV;
  1352. led_color.Connect_2_Green = COLOR_MIN_LV;
  1353. led_color.Connect_2_Blue = _colorBuf;
  1354. led_color.Connect_2_Red = COLOR_MIN_LV;
  1355. } else if ( chargingData_1->SystemStatus == S_UPDATE ) {
  1356. led_color.Connect_1_Green = COLOR_MIN_LV;
  1357. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1358. led_color.Connect_1_Red = _colorBuf;
  1359. } else if (chargingData_1->SystemStatus == S_RESERVATION ||
  1360. chargingData_2->SystemStatus == S_RESERVATION) {
  1361. if (ReservationLed) {
  1362. led_color.Connect_1_Green = COLOR_MIN_LV;
  1363. led_color.Connect_2_Green = COLOR_MIN_LV;
  1364. } else {
  1365. led_color.Connect_1_Green = _colorBuf;
  1366. led_color.Connect_2_Green = _colorBuf;
  1367. }
  1368. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1369. led_color.Connect_1_Red = COLOR_MIN_LV;
  1370. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1371. led_color.Connect_2_Red = COLOR_MIN_LV;
  1372. }
  1373. } else {
  1374. //實際操作
  1375. if (chargingData_1->SystemStatus == S_BOOTING ||
  1376. chargingData_1->SystemStatus == S_IDLE ||
  1377. chargingData_1->SystemStatus == S_MAINTAIN) {
  1378. if (chargingData_1->IsAvailable == NO) { //For Audi
  1379. led_color.Connect_1_Green = COLOR_MIN_LV;
  1380. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1381. led_color.Connect_1_Red = _colorBuf;
  1382. } else {
  1383. #if defined DD360Audi
  1384. led_color.Connect_1_Green = _colorBuf;
  1385. led_color.Connect_1_Blue = _colorBuf;
  1386. led_color.Connect_1_Red = _colorBuf;
  1387. #else
  1388. led_color.Connect_1_Green = _colorBuf;
  1389. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1390. led_color.Connect_1_Red = COLOR_MIN_LV;
  1391. #endif
  1392. }
  1393. } else if ((chargingData_1->SystemStatus >= S_AUTHORIZING &&
  1394. chargingData_1->SystemStatus <= S_COMPLETE) ||
  1395. (chargingData_1->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1396. chargingData_1->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  1397. led_color.Connect_1_Green = COLOR_MIN_LV;
  1398. led_color.Connect_1_Blue = _colorBuf;
  1399. led_color.Connect_1_Red = COLOR_MIN_LV;
  1400. }else if ( chargingData_1->SystemStatus == S_UPDATE ) {
  1401. led_color.Connect_1_Green = COLOR_MIN_LV;
  1402. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1403. led_color.Connect_1_Red = _colorBuf;
  1404. } else if (chargingData_1->SystemStatus == S_RESERVATION) {
  1405. if (ReservationLed) {
  1406. led_color.Connect_1_Green = COLOR_MIN_LV;
  1407. } else {
  1408. led_color.Connect_1_Green = _colorBuf;
  1409. }
  1410. led_color.Connect_1_Blue = COLOR_MIN_LV;
  1411. led_color.Connect_1_Red = COLOR_MIN_LV;
  1412. }
  1413. // --------------------------------------------------------------------------
  1414. if (chargingData_2->SystemStatus == S_BOOTING ||
  1415. chargingData_2->SystemStatus == S_IDLE ||
  1416. chargingData_2->SystemStatus == S_MAINTAIN) {
  1417. if (chargingData_2->IsAvailable == NO) {
  1418. led_color.Connect_2_Green = COLOR_MIN_LV;
  1419. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1420. led_color.Connect_2_Red = _colorBuf;
  1421. } else {
  1422. #if defined DD360Audi
  1423. led_color.Connect_2_Green = _colorBuf;
  1424. led_color.Connect_2_Blue = _colorBuf;
  1425. led_color.Connect_2_Red = _colorBuf;
  1426. #else
  1427. led_color.Connect_2_Green = _colorBuf;
  1428. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1429. led_color.Connect_2_Red = COLOR_MIN_LV;
  1430. #endif
  1431. }
  1432. } else if ((chargingData_2->SystemStatus >= S_AUTHORIZING &&
  1433. chargingData_2->SystemStatus <= S_COMPLETE) ||
  1434. (chargingData_2->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1435. chargingData_2->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  1436. led_color.Connect_2_Green = COLOR_MIN_LV;
  1437. led_color.Connect_2_Blue = _colorBuf;
  1438. led_color.Connect_2_Red = COLOR_MIN_LV;
  1439. }else if ( chargingData_2->SystemStatus == S_UPDATE ) {
  1440. led_color.Connect_2_Green = COLOR_MIN_LV;
  1441. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1442. led_color.Connect_2_Red = _colorBuf;
  1443. } else if (chargingData_2->SystemStatus == S_RESERVATION) {
  1444. if (ReservationLed) {
  1445. led_color.Connect_2_Green = COLOR_MIN_LV;
  1446. } else {
  1447. led_color.Connect_2_Green = _colorBuf;
  1448. }
  1449. led_color.Connect_2_Blue = COLOR_MIN_LV;
  1450. led_color.Connect_2_Red = COLOR_MIN_LV;
  1451. }
  1452. }
  1453. }
  1454. if (_checkLedChanged > 0) {
  1455. if (Config_Led_Color(Uart5Fd, ADDR_LED, &led_color) == PASS) {
  1456. _checkLedChanged--;
  1457. cur_led_color.Connect_1_Red = led_color.Connect_1_Red;
  1458. cur_led_color.Connect_1_Green = led_color.Connect_1_Green;
  1459. cur_led_color.Connect_1_Blue = led_color.Connect_1_Blue;
  1460. cur_led_color.Connect_2_Red = led_color.Connect_2_Red;
  1461. cur_led_color.Connect_2_Green = led_color.Connect_2_Green;
  1462. cur_led_color.Connect_2_Blue = led_color.Connect_2_Blue;
  1463. }
  1464. } else if (IsNoneMatchLedColor()) {
  1465. _checkLedChanged = 3;
  1466. }
  1467. }
  1468. static void LEDBoardSelfTest(void)
  1469. {
  1470. // 自檢階段處理,自檢階段如果讀不到版號則代表該系統沒有掛燈板
  1471. if (ShmLedModuleData->SelfTest_Comp == YES) {
  1472. return;
  1473. }
  1474. #if defined DD360 ||defined DD360Audi
  1475. GetFwAndHwVersion_Led();
  1476. sleep(1);
  1477. gettimeofday(&_led_priority_time, NULL);
  1478. return;
  1479. #endif //defined DD360 || defined DD360Audi
  1480. // 自檢階段
  1481. if (pSysInfo->SelfTestSeq <= _STEST_PSU_CAP) {
  1482. GetFwAndHwVersion_Led();
  1483. sleep(1);
  1484. gettimeofday(&_led_priority_time, NULL);
  1485. } else {
  1486. // 自檢階段沒有問到版號
  1487. if (pAlarmCode->AlarmEvents.bits.LedboardStestFail == NO) {
  1488. pAlarmCode->AlarmEvents.bits.LedboardStestFail = YES;
  1489. }
  1490. }
  1491. }
  1492. static void LEDBoardProcess(void)
  1493. {
  1494. //struct ChargingInfoData *pDcChargingInfo0 = NULL;
  1495. //struct ChargingInfoData *pDcChargingInfo1 = NULL;
  1496. if (ShmLedModuleData->SelfTest_Comp == NO) {
  1497. return;
  1498. }
  1499. if (GetTimeoutValue(_led_priority_time) / 1000 >= 1000) {
  1500. //if (pSysConfig->TotalConnectorCount == 1) {
  1501. // pDcChargingInfo0 = (struct ChargeingInfoData *)GetDcChargingInfoData(0);
  1502. // SetLedColor(pDcChargingInfo0, pDcChargingInfo0);
  1503. //} else if (pSysConfig->TotalConnectorCount == 2) {
  1504. // pDcChargingInfo0 = (struct ChargeingInfoData *)GetDcChargingInfoData(0);
  1505. // pDcChargingInfo1 = (struct ChargeingInfoData *)GetDcChargingInfoData(1);
  1506. // SetLedColor(pDcChargingInfo0, pDcChargingInfo1);
  1507. //}
  1508. if (time((time_t*)NULL) - ReservationFlashTimer >= 3) {
  1509. ReservationFlashTimer = time((time_t*)NULL);
  1510. if (ReservationLed)
  1511. ReservationLed = 0;
  1512. else
  1513. ReservationLed = 1;
  1514. }
  1515. SetLedColor();
  1516. gettimeofday(&_led_priority_time, NULL);
  1517. }
  1518. }
  1519. void RelayBoardTask(int uartFD)
  1520. {
  1521. bool isRelayBypass = false;
  1522. pid_t pid = fork();
  1523. if (pid == 0) {
  1524. bool isCharging = false;
  1525. bool isStopChargingCount = false;
  1526. uint8_t i = 0;
  1527. int isContinue = 1;
  1528. struct ChargingInfoData *pDcChargingInfo = NULL;
  1529. //share memory mapping
  1530. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  1531. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  1532. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  1533. ShmRelayModuleData = (struct RelayModuleData *)GetShmRelayModuleData();
  1534. ShmPsuData = (struct PsuData *)GetShmPsuData();
  1535. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  1536. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  1537. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  1538. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  1539. ShmLedModuleData = (struct LedModuleData *)GetShmLedModuleData();
  1540. Uart5Fd = uartFD;
  1541. for(int i = 0; i < pSysConfig->TotalConnectorCount; i++)
  1542. {
  1543. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1544. if(pDcChargingInfo->PantographFlag == YES)
  1545. {
  1546. isRelayBypass = true;
  1547. }
  1548. }
  1549. //relay init
  1550. if(isRelayBypass == false)
  1551. {
  1552. outputRelayInit(uartFD);
  1553. }
  1554. while (isContinue) {
  1555. if(IsRelayProcessNeedPause() == true)
  1556. {
  1557. sleep(1);
  1558. continue;
  1559. }
  1560. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  1561. if (ShmRelayModuleData->SelfTest_Comp == NO && isRelayBypass == false) {
  1562. GetFwAndHwVersion_Relay();
  1563. SetModelName_Relay(); //DS60-120 add
  1564. SetRtcData_Relay();
  1565. sleep(1);
  1566. }
  1567. #if !defined NO_FAN_BOARD && !defined DD360ComBox
  1568. fanBoardSelfTest();
  1569. #endif //NO_FAN_BOARD
  1570. #if !defined DD360ComBox
  1571. LEDBoardSelfTest();
  1572. #endif //defined DD360ComBox
  1573. if (ShmRelayModuleData->SelfTest_Comp == YES && isRelayBypass == false)
  1574. {
  1575. // ==============優先權最高 10 ms ==============
  1576. // 輸出電壓
  1577. GetPersentOutputVol();
  1578. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  1579. // 三相輸入電壓
  1580. GetPresentInputVol();
  1581. #endif //!defined DD360 && !defined DD360Audi
  1582. // 讀取當前 AC relay 狀態
  1583. regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
  1584. GetRelayOutputStatus();
  1585. // Cable check (Get)
  1586. GetGfdAdc();
  1587. for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  1588. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1589. // Cable check (Set)
  1590. CableCheckDetected(i);
  1591. // check k1 k2 relay 狀態
  1592. CheckK1K2RelayOutput(i);
  1593. // 依據當前各槍的狀態選擇 搭上/放開 Relay
  1594. SetK1K2RelayStatus(i);
  1595. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  1596. if (pSysConfig->PhaseLossPolicy == YES) {
  1597. CheckPhaseLossStatus(i);
  1598. }
  1599. CheckAcInputOvpStatus(i);
  1600. #endif //!defined DD360 && !defined DD360Audi
  1601. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  1602. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  1603. pDcChargingInfo->SystemStatus == S_MAINTAIN) {
  1604. //pDcChargingInfo->RelayWeldingCheck = NO;
  1605. //_isRelayWelding[i] = NO;
  1606. _isOvpChkTimeFlag[i] = NO;
  1607. //ResetDetAlarmStatus(i); //DS60-120 add
  1608. }
  1609. if (pDcChargingInfo->SystemStatus == S_BOOTING ||
  1610. (pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
  1611. pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
  1612. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  1613. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1) ||
  1614. pSysInfo->WaitForPlugit == YES ||
  1615. (pSysInfo->PageIndex >= _LCM_AUTHORIZING &&
  1616. pSysInfo->PageIndex <= _LCM_WAIT_FOR_PLUG)
  1617. ) {
  1618. pDcChargingInfo->IsReadyToCharging = YES;
  1619. isCharging = true;
  1620. // 限定只有在槍類別為 GBT 的時候才做 relay welding 的判斷
  1621. //if (pDcChargingInfo->Type == _Type_GB) {
  1622. // if (pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  1623. // pDcChargingInfo->RelayWeldingCheck == NO) {
  1624. // CheckRelayWeldingStatus(i);
  1625. // }
  1626. //} else {
  1627. //pDcChargingInfo->RelayWeldingCheck = YES;
  1628. //}
  1629. if (pDcChargingInfo->SystemStatus == S_CHARGING) {
  1630. CheckOutputPowerOverCarReq(i);
  1631. //CheckOutputVolNoneMatchFire(i);
  1632. }
  1633. /*else {
  1634. _isOutputNoneMatch[i] = NO;
  1635. }*/
  1636. } else {
  1637. pDcChargingInfo->IsReadyToCharging = NO;
  1638. }
  1639. }
  1640. // 橋接 relay
  1641. SetParalleRelayStatus();
  1642. // 搭上 AC Contactor
  1643. //if (isCharging) {
  1644. // outputRelay.relay_event.bits.AC_Contactor = YES;
  1645. //} else {
  1646. // outputRelay.relay_event.bits.AC_Contactor = NO;
  1647. //}
  1648. if (isCharging ||
  1649. (ShmPsuData->Work_Step >= _TEST_MODE &&
  1650. ShmPsuData->Work_Step <= _TEST_MODE)) {
  1651. isStopChargingCount = false;
  1652. outputRelay.relay_event.bits.AC_Contactor = YES;
  1653. } else {
  1654. if (!isStopChargingCount) {
  1655. gettimeofday(&_close_ac_contactor, NULL);
  1656. isStopChargingCount = true;
  1657. } else {
  1658. if ((outputRelay.relay_event.bits.AC_Contactor == YES &&
  1659. GetTimeoutValue(_close_ac_contactor) / 1000 >= (TEN_MINUTES * 1000))) {
  1660. outputRelay.relay_event.bits.AC_Contactor = NO;
  1661. }
  1662. }
  1663. }
  1664. if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == ABNORMAL) {
  1665. outputRelay.relay_event.bits.AC_Contactor = NO;
  1666. }
  1667. if (pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == ABNORMAL) {
  1668. RunForceStopProcess();
  1669. outputRelay.relay_event.bits.AC_Contactor = NO;
  1670. }
  1671. if (ShmPsuData->Work_Step >= _TEST_MODE && ShmPsuData->Work_Step <= _TEST_MODE) {
  1672. outputRelay.relay_event.bits.Gun1_N = outputRelay.relay_event.bits.Gun1_P = YES;
  1673. }
  1674. // 搭上/鬆開 Relay
  1675. if (IsNoneMatchRelayStatus()) {
  1676. if (Config_Relay_Output(Uart5Fd, ADDR_RELAY, &outputRelay)) {
  1677. //regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
  1678. //regRelay.relay_event.bits.CCS_Precharge = outputRelay.relay_event.bits.CCS_Precharge;
  1679. //regRelay.relay_event.bits.Gun1_P = outputRelay.relay_event.bits.Gun1_P;
  1680. //regRelay.relay_event.bits.Gun1_N = outputRelay.relay_event.bits.Gun1_N;
  1681. //regRelay.relay_event.bits.Gun2_P = outputRelay.relay_event.bits.Gun2_P;
  1682. //regRelay.relay_event.bits.Gun2_N = outputRelay.relay_event.bits.Gun2_N;
  1683. //regRelay.relay_event.bits.Gun1_Parallel_P = outputRelay.relay_event.bits.Gun1_Parallel_P;
  1684. //regRelay.relay_event.bits.Gun1_Parallel_N = outputRelay.relay_event.bits.Gun1_Parallel_N;
  1685. //MatchRelayStatus();
  1686. //log_info("Match Relay, AC = %x, g1_p = %x, g1_n = %x, g2_p = %x, g2_n = %x, pre = %x, bri_p = %x, bri_n = %x ",
  1687. // regRelay.relay_event.bits.AC_Contactor,
  1688. // regRelay.relay_event.bits.Gun1_P,
  1689. // regRelay.relay_event.bits.Gun1_N,
  1690. // regRelay.relay_event.bits.Gun2_P,
  1691. // regRelay.relay_event.bits.Gun2_N,
  1692. // regRelay.relay_event.bits.CCS_Precharge,
  1693. // regRelay.relay_event.bits.Gun1_Parallel_P,
  1694. // regRelay.relay_event.bits.Gun1_Parallel_N);
  1695. }
  1696. }
  1697. }
  1698. else if(isRelayBypass == true)
  1699. {
  1700. for(i = 0; i < pSysConfig->TotalConnectorCount; i++)
  1701. {
  1702. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  1703. if (pDcChargingInfo->SystemStatus == S_IDLE ||
  1704. pDcChargingInfo->SystemStatus == S_RESERVATION ||
  1705. pDcChargingInfo->SystemStatus == S_MAINTAIN)
  1706. {
  1707. _isOvpChkTimeFlag[i] = NO;
  1708. }
  1709. if (pDcChargingInfo->SystemStatus == S_CHARGING)
  1710. {
  1711. CheckOutputPowerOverCarReq(i);
  1712. }
  1713. }
  1714. }
  1715. #if !defined NO_FAN_BOARD && !defined DD360ComBox
  1716. fanBoardPorcess();
  1717. #endif //NO_FAN_BOARD
  1718. #if !defined DD360ComBox
  1719. LEDBoardProcess();
  1720. #endif //defined DD360ComBox
  1721. usleep(10000);
  1722. }
  1723. }
  1724. }