1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354 |
- #include <stdio.h> /*標準輸入輸出定義*/
- #include <stdlib.h> /*標準函數庫定義*/
- #include <string.h>
- #include <stdint.h>
- #include <time.h>
- #include <unistd.h>
- #include <sys/time.h>
- #include <sys/timeb.h>
- #include "../ShareMemory/shmMem.h"
- #include "../Config.h"
- #include "../Log/log.h"
- #include "Module_InternalComm.h"
- #include "internalComm.h"
- static struct SysConfigData *pSysConfig = NULL;
- static struct SysInfoData *pSysInfo = NULL;
- static struct AlarmCodeData *pAlarmCode = NULL;
- static struct RelayModuleData *ShmRelayModuleData = NULL;
- static struct PsuData *ShmPsuData = NULL;
- static struct PrimaryMcuData *ShmPrimaryMcuData = NULL;
- static DcCommonInfo *ShmDcCommonData = NULL;
- static Relay outputRelay = {0};
- static Relay regRelay = {0};
- static int Uart5Fd = 0;
- static bool _isOvpChkTimeFlag[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
- static struct timeval _checkOutputVolProtectTimer[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
- static struct timeval _close_ac_contactor;
- static void RunForceStopProcess(void)
- {
- static bool isCriticalStop = NO;
- static struct timeval _psuCriticalStop;
- uint32_t _timebuf;
- if (isCriticalStop == NO) {
- isCriticalStop = YES;
- gettimeofday(&_psuCriticalStop, NULL);
- } else {
- _timebuf = GetTimeoutValue(_psuCriticalStop);
- if (_timebuf < 0) {
- gettimeofday(&_psuCriticalStop, NULL);
- } else {
- if (_timebuf / 1000 >= (FORCE_STOP_TIME * 1000)) {
- isCriticalStop = NO;
- pAlarmCode->AlarmEvents.bits.PsuFailureAlarm = NORMAL;
- }
- }
- }
- }
- static void StopCheckRelayInfo(uint8_t _chkIndex)
- {
- if (ShmDcCommonData->CheckRelayStatus[_chkIndex] != STOP) {
- ShmDcCommonData->CheckRelayStatus[_chkIndex] = STOP;
- }
- }
- static void StartCheckRelayInfo(uint8_t _chkIndex, uint8_t toState)
- {
-
- static time_t lastCheckRelayStateTimer[6] = {0};
- time_t nowTime = {0};
-
- if (ShmDcCommonData->CheckRelayStatus[_chkIndex] == STOP) {
- time(&lastCheckRelayStateTimer[_chkIndex]);
- ShmDcCommonData->CheckRelayStatus[_chkIndex] = START;
- } else {
- time(&nowTime);
- if (nowTime - lastCheckRelayStateTimer[_chkIndex] >= 1) {
-
- if (toState == 1) {
- ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_DRIVING;
- } else {
- ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_WELDING;
- }
- lastCheckRelayStateTimer[_chkIndex] = nowTime;
- }
- }
- }
- static uint8_t getCommTargetID(uint8_t index)
- {
- uint8_t targetID = 0;
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- if (pSysConfig->TotalConnectorCount == 1) {
- if (strncmp((char *)&pSysConfig->ModelName[7], "0", 1) != 0) {
- targetID = 0x01;
- } else if (strncmp((char *)&pSysConfig->ModelName[9], "0", 1) != 0) {
- targetID = 0x02;
- }
- } else {
- targetID = pDcChargingInfo->Evboard_id;
- }
- return targetID;
- }
- static bool IsNoneMatchRelayStatus(void)
- {
- bool result = false;
- if (
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- (regRelay.relay_event.bits.AC_Contactor != outputRelay.relay_event.bits.AC_Contactor) ||
- (regRelay.relay_event.bits.CCS_Precharge != outputRelay.relay_event.bits.CCS_Precharge) ||
- #endif
- (regRelay.relay_event.bits.Gun1_P != outputRelay.relay_event.bits.Gun1_P) ||
- (regRelay.relay_event.bits.Gun1_N != outputRelay.relay_event.bits.Gun1_N) ||
- (regRelay.relay_event.bits.Gun2_P != outputRelay.relay_event.bits.Gun2_P) ||
- (regRelay.relay_event.bits.Gun2_N != outputRelay.relay_event.bits.Gun2_N)
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- ||
- (regRelay.relay_event.bits.Gun1_Parallel_P != outputRelay.relay_event.bits.Gun1_Parallel_P) ||
- (regRelay.relay_event.bits.Gun1_Parallel_N != outputRelay.relay_event.bits.Gun1_Parallel_N)
- #endif
- ) {
- result = true;
- }
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- if (regRelay.relay_event.bits.AC_Contactor != outputRelay.relay_event.bits.AC_Contactor) {
- log_info("AC Contact Relay none match. \n");
- }
- if (regRelay.relay_event.bits.CCS_Precharge != outputRelay.relay_event.bits.CCS_Precharge) {
- log_info("CCS Precharge Relay none match. \n");
- }
- #endif
- if (regRelay.relay_event.bits.Gun1_P != outputRelay.relay_event.bits.Gun1_P) {
-
- StartCheckRelayInfo(RELAY_SMR1_P_STATUS, outputRelay.relay_event.bits.Gun1_P);
- } else {
- StopCheckRelayInfo(RELAY_SMR1_P_STATUS);
- }
- if (regRelay.relay_event.bits.Gun1_N != outputRelay.relay_event.bits.Gun1_N) {
-
- StartCheckRelayInfo(RELAY_SMR1_N_STATUS, outputRelay.relay_event.bits.Gun1_N);
- } else {
- StopCheckRelayInfo(RELAY_SMR1_N_STATUS);
- }
- if (regRelay.relay_event.bits.Gun2_P != outputRelay.relay_event.bits.Gun2_P) {
-
- StartCheckRelayInfo(RELAY_SMR2_P_STATUS, outputRelay.relay_event.bits.Gun2_P);
- } else {
- StopCheckRelayInfo(RELAY_SMR2_P_STATUS);
- }
- if (regRelay.relay_event.bits.Gun2_N != outputRelay.relay_event.bits.Gun2_N) {
-
- StartCheckRelayInfo(RELAY_SMR2_N_STATUS, outputRelay.relay_event.bits.Gun2_N);
- } else {
- StopCheckRelayInfo(RELAY_SMR2_N_STATUS);
- }
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- if (regRelay.relay_event.bits.Gun1_Parallel_P != outputRelay.relay_event.bits.Gun1_Parallel_P) {
-
- StartCheckRelayInfo(RELAY_PARA_P_STATUS, outputRelay.relay_event.bits.Gun1_Parallel_P);
- } else {
- StopCheckRelayInfo(RELAY_PARA_P_STATUS);
- }
- if (regRelay.relay_event.bits.Gun1_Parallel_N != outputRelay.relay_event.bits.Gun1_Parallel_N) {
-
- StartCheckRelayInfo(RELAY_PARA_N_STATUS, outputRelay.relay_event.bits.Gun1_Parallel_N);
- } else {
- StopCheckRelayInfo(RELAY_PARA_N_STATUS);
- }
- #endif
- return result;
- }
- static void SetParalleRelayStatus(void)
- {
- #if defined DD360 || defined DD360Audi || defined DD360ComBox
- return;
- #endif
- struct ChargingInfoData *pDcChargingInfo0 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
- struct ChargingInfoData *pDcChargingInfo1 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
-
- if (pSysConfig->TotalConnectorCount >= 2) {
- if (pDcChargingInfo0->SystemStatus == S_BOOTING || pDcChargingInfo1->SystemStatus == S_BOOTING ||
- (pDcChargingInfo0->SystemStatus == S_IDLE && pDcChargingInfo1->SystemStatus == S_IDLE)) {
-
- if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
- } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
- }
- } else {
- if (pDcChargingInfo0->IsReadyToCharging == YES ||
- pDcChargingInfo1->IsReadyToCharging == YES) {
-
- if (pSysInfo->MainChargingMode == _MAIN_CHARGING_MODE_MAX) {
- if (pSysInfo->ReAssignedFlag < _REASSIGNED_RELAY_M_TO_A) {
-
- if (regRelay.relay_event.bits.Gun1_Parallel_N == NO) {
- outputRelay.relay_event.bits.Gun1_Parallel_N = YES;
- } else if (regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
- outputRelay.relay_event.bits.Gun1_Parallel_P = YES;
- }
- } else {
-
- if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
- } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
- }
- }
- } else if (pSysInfo->MainChargingMode == _MAIN_CHARGING_MODE_AVER) {
- if (pSysInfo->ReAssignedFlag < _REASSIGNED_RELAY_A_TO_M) {
-
- if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_P = NO;
- } else if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
- outputRelay.relay_event.bits.Gun1_Parallel_N = NO;
- }
- } else {
-
- if (regRelay.relay_event.bits.Gun1_Parallel_N == NO) {
- outputRelay.relay_event.bits.Gun1_Parallel_N = YES;
- } else if (regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
- outputRelay.relay_event.bits.Gun1_Parallel_P = YES;
- }
- }
- }
- }
- }
- }
- }
- static void GetGfdAdc(void)
- {
- int gunIndex = 0;
- uint8_t targetID = 0;
- struct ChargingInfoData *pDcChargingInfo = NULL;
- Gfd gfd_adc = {0};
-
-
-
- if (Query_Gfd_Adc(Uart5Fd, ADDR_RELAY, &gfd_adc) == PASS) {
- for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
- if (pDcChargingInfo->Type == 0x09 &&
- !pSysConfig->AlwaysGfdFlag
- ) {
- if ((pDcChargingInfo->PresentChargingVoltage * 10) >= VOUT_MIN_VOLTAGE) {
- pDcChargingInfo->GroundFaultStatus = GFD_PASS;
- }
- continue;
- }
- targetID = getCommTargetID(gunIndex);
- if (targetID == 0x01) {
-
-
-
- pDcChargingInfo->GroundFaultStatus = gfd_adc.result_conn1;
-
-
-
-
-
- if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
- log_info("GFD Fail. index = %d, Step = %d, R = %d, Vol = %d \n",
- gunIndex,
- gfd_adc.rb_step_1,
- gfd_adc.Resister_conn1,
- gfd_adc.voltage_conn1);
- } else if (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
- pDcChargingInfo->GroundFaultStatus == GFD_WARNING
- ) {
- if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
- log_info("GFD Warning. index = %d, Result = %d, R = %d, Vol = %d \n",
- gunIndex,
- pDcChargingInfo->GroundFaultStatus,
- gfd_adc.Resister_conn1,
- gfd_adc.voltage_conn1);
- }
- }
- } else if (targetID == 0x02) {
-
-
-
- pDcChargingInfo->GroundFaultStatus = gfd_adc.result_conn2;
- if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
- log_info("GFD Fail. index = %d, Step = %d, R = %d, Vol = %d \n",
- gunIndex,
- gfd_adc.rb_step_2,
- gfd_adc.Resister_conn2,
- gfd_adc.voltage_conn2);
- } else if (pDcChargingInfo->GroundFaultStatus == GFD_PASS ||
- pDcChargingInfo->GroundFaultStatus == GFD_WARNING
- ) {
- if (pDcChargingInfo->GroundFaultStatus == GFD_WARNING) {
- log_info("GFD Warning. index = %d, Result = %d, R = %d, Vol = %d \n",
- gunIndex,
- pDcChargingInfo->GroundFaultStatus,
- gfd_adc.Resister_conn1,
- gfd_adc.voltage_conn1);
- }
- }
- }
- }
- }
- }
- void CheckOutputPowerOverCarReq(uint8_t index)
- {
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- float fireV = pDcChargingInfo->FireChargingVoltage;
- float carV = pDcChargingInfo->EvBatteryMaxVoltage * 10;
- if ((pDcChargingInfo->EvBatterytargetVoltage * 10) > 1500 &&
- (pDcChargingInfo->Type == _Type_Chademo ||
- pDcChargingInfo->Type == _Type_CCS_2 ||
- pDcChargingInfo->Type == _Type_GB)) {
- if (fireV >= (carV + (carV * 0.02))) {
- if (!_isOvpChkTimeFlag[index]) {
- if ((pDcChargingInfo->PresentChargingVoltage * 10) >= VOUT_MIN_VOLTAGE * 10) {
- gettimeofday(&_checkOutputVolProtectTimer[index], NULL);
- _isOvpChkTimeFlag[index] = YES;
- }
- } else {
- log_info("[Module_InternalComm]CheckOutputPowerOverCarReq NG : fire = %f, battery = %f \n",
- pDcChargingInfo->FireChargingVoltage, (pDcChargingInfo->EvBatterytargetVoltage * 10));
- log_error("[Module_InternalComm]CheckOutputPowerOverCarReq NG : fire = %f, battery = %f \n",
- pDcChargingInfo->FireChargingVoltage, (pDcChargingInfo->EvBatterytargetVoltage * 10));
- if ((GetTimeoutValue(_checkOutputVolProtectTimer[index]) / 1000) >= OUTPUT_VOL_CHK_TIME) {
- if (pDcChargingInfo->Type == _Type_Chademo) {
- pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = YES;
- } else if (pDcChargingInfo->Type == _Type_CCS_2) {
- pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = YES;
- } else if (pDcChargingInfo->Type == _Type_GB) {
- pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = YES;
- }
- pDcChargingInfo->StopChargeFlag = YES;
- }
- }
- } else {
- if (_isOvpChkTimeFlag[index] == YES) {
- _isOvpChkTimeFlag[index] = NO;
- }
- }
- }
- }
- void ResetDetAlarmStatus(uint8_t gun)
- {
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gun);
- if (pDcChargingInfo->Type == _Type_Chademo) {
- if (pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP == YES) {
- pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = NO;
- }
- } else if (pDcChargingInfo->Type == _Type_GB) {
- if (pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP == YES) {
- pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = NO;
- }
- } else if (pDcChargingInfo->Type == _Type_CCS_2) {
- if (pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP == YES) {
- pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = NO;
- }
- }
- }
- void CheckAcInputOvpStatus(uint8_t index)
- {
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == YES ||
- pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == YES ||
- pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == YES) {
-
- pDcChargingInfo->StopChargeFlag = YES;
- }
- }
- void CheckPhaseLossStatus(uint8_t index)
- {
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == YES ||
- pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == YES ||
- pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == YES) {
-
- pDcChargingInfo->StopChargeFlag = YES;
- }
- }
- void SetK1K2RelayStatus(uint8_t index)
- {
- uint8_t targetID = 0;
- PreChargingState *pRegPreChargingState = NULL;
- PreChargingState *pOutputPreChargingState = NULL;
- GunPNState *pRegGunPNState = NULL;
- GunPNState *pOutputGunPNState = NULL;
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- if (ShmPsuData->Work_Step >= _TEST_MODE && ShmPsuData->Work_Step <= _TEST_MODE) {
- if (regRelay.relay_event.bits.Gun1_N == NO) {
- outputRelay.relay_event.bits.Gun1_N = YES;
- } else if (regRelay.relay_event.bits.Gun1_P == NO) {
- outputRelay.relay_event.bits.Gun1_P = YES;
- }
- return;
- }
- targetID = getCommTargetID(index);
- pRegPreChargingState = (PreChargingState *)®Relay.relay_event.relay_status[0];
- pOutputPreChargingState = (PreChargingState *)&outputRelay.relay_event.relay_status[0];
- if (targetID == 0x01) {
- pRegGunPNState = (GunPNState *)®Relay.relay_event.relay_status[1];
- pOutputGunPNState = (GunPNState *)&outputRelay.relay_event.relay_status[1];
- } else if (targetID == 0x02) {
- pRegGunPNState = (GunPNState *)®Relay.relay_event.relay_status[2];
- pOutputGunPNState = (GunPNState *)&outputRelay.relay_event.relay_status[2];
- }
- switch (pDcChargingInfo->SystemStatus) {
- case S_BOOTING:
- case S_IDLE:
- case S_AUTHORIZING:
- case S_REASSIGN_CHECK:
- case S_REASSIGN:
- case S_PREPARNING:
- case S_PREPARING_FOR_EV:
- if (pRegGunPNState->GunP == YES) {
- pOutputGunPNState->GunP = NO;
- } else if (pRegGunPNState->GunN == YES) {
- pOutputGunPNState->GunN = NO;
- }
- if (targetID == 0x02 && pDcChargingInfo->Type == _Type_CCS_2) {
- if (pRegPreChargingState->CcsPrecharge == YES) {
- pOutputPreChargingState->CcsPrecharge = NO;
- }
- }
- break;
- case S_PREPARING_FOR_EVSE:
- case S_CHARGING:
-
-
-
- if (pRegGunPNState->GunN == NO) {
- pOutputGunPNState->GunN = YES;
- } else if (pRegGunPNState->GunP == NO) {
- pOutputGunPNState->GunP = YES;
- }
- break;
- case S_TERMINATING:
- case S_COMPLETE:
- case S_ALARM:
- if ((pDcChargingInfo->PresentChargingCurrent * 10) <= SEFETY_SWITCH_RELAY_CUR) {
- if (pRegGunPNState->GunP == YES) {
- pOutputGunPNState->GunP = NO;
- } else if (pRegGunPNState->GunN == YES) {
- pOutputGunPNState->GunN = NO;
- }
- }
- break;
- case S_CCS_PRECHARGE_ST0:
- #if defined DD360 || defined DD360Audi || defined DD360ComBox
- break;
- #endif
-
-
-
-
-
-
-
- break;
- case S_CCS_PRECHARGE_ST1:
- #if defined DD360 || defined DD360Audi || defined DD360ComBox
- break;
- #endif
-
-
-
-
-
-
-
- break;
- }
- }
- void CheckK1K2RelayOutput(uint8_t index)
- {
- uint8_t targetID = 0;
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- targetID = getCommTargetID(index);
- switch (targetID) {
- case 0x01:
- if (regRelay.relay_event.bits.Gun1_N == YES && regRelay.relay_event.bits.Gun1_P == YES) {
- pDcChargingInfo->RelayK1K2Status = YES;
- } else {
- pDcChargingInfo->RelayK1K2Status = NO;
- }
- if (pDcChargingInfo->Type == _Type_CCS_2) {
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- if (regRelay.relay_event.bits.Gun1_N == YES && regRelay.relay_event.bits.CCS_Precharge == YES) {
- pDcChargingInfo->RelayKPK2Status = YES;
- } else {
- pDcChargingInfo->RelayKPK2Status = NO;
- }
- #else
- if (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0) {
- pDcChargingInfo->RelayKPK2Status = YES;
- } else {
- pDcChargingInfo->RelayKPK2Status = NO;
- }
- #endif
- }
- break;
- case 0x02:
- if (regRelay.relay_event.bits.Gun2_N == YES &&
- regRelay.relay_event.bits.Gun2_P == YES) {
- pDcChargingInfo->RelayK1K2Status = YES;
- } else {
- pDcChargingInfo->RelayK1K2Status = NO;
- }
- if (pDcChargingInfo->Type == _Type_CCS_2) {
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- if (regRelay.relay_event.bits.Gun2_N == YES &&
- regRelay.relay_event.bits.CCS_Precharge == YES) {
- pDcChargingInfo->RelayKPK2Status = YES;
- } else {
- pDcChargingInfo->RelayKPK2Status = NO;
- }
- #else
- if (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0) {
- pDcChargingInfo->RelayKPK2Status = YES;
- } else {
- pDcChargingInfo->RelayKPK2Status = NO;
- }
- #endif
- }
- break;
- }
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
-
- if (pSysInfo->BridgeRelayStatus == YES) {
- if (regRelay.relay_event.bits.Gun1_Parallel_N == NO &&
- regRelay.relay_event.bits.Gun1_Parallel_P == NO) {
- pSysInfo->BridgeRelayStatus = NO;
- }
- } else if (pSysInfo->BridgeRelayStatus == NO) {
- if (regRelay.relay_event.bits.Gun1_Parallel_N == YES &&
- regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
- pSysInfo->BridgeRelayStatus = YES;
- }
- }
- #else
- pSysInfo->BridgeRelayStatus = YES;
- #endif
- }
- void SetGfdConfig(uint8_t index, uint8_t resister)
- {
- Gfd_config gfd_config = {
- .index = index,
- .state = resister,
- };
-
- if (Config_Gfd_Value(Uart5Fd, ADDR_RELAY, &gfd_config) == PASS) {
- }
- }
- void CableCheckDetected(uint8_t index)
- {
- uint8_t targetID = 0;
- struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
-
-
-
-
-
-
-
- if (pSysConfig->TotalConnectorCount == 1) {
- if (strncmp((char *)&pSysConfig->ModelName[7], "0", 1) != 0) {
- targetID = 0;
- } else if (strncmp((char *)&pSysConfig->ModelName[9], "0", 1) != 0) {
- targetID = 1;
- }
- } else {
- targetID = index;
- }
- if ((pDcChargingInfo->Type >= _Type_Chademo &&
- pDcChargingInfo->Type <= _Type_GB) ||
- (pDcChargingInfo->Type == 0x09 &&
- pSysConfig->AlwaysGfdFlag)
- ) {
- if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
- pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
- (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
- pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
- ) {
-
-
-
- if (pDcChargingInfo->SystemStatus == S_PREPARING_FOR_EVSE) {
- SetGfdConfig(targetID, GFD_CABLECHK);
- } else if ((pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0) &&
- (pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
- ) {
- SetGfdConfig(targetID, GFD_PRECHARGE);
- } else if ((pDcChargingInfo->SystemStatus >= S_CHARGING) &&
- (pDcChargingInfo->SystemStatus <= S_TERMINATING)
- ) {
- if ((pDcChargingInfo->Type == _Type_GB) ||
- (pDcChargingInfo->Type == _Type_Chademo)
- ) {
- SetGfdConfig(targetID, GFD_IDLE);
- } else {
- SetGfdConfig(targetID, GFD_CHARGING);
- }
- }
- } else if (pDcChargingInfo->SystemStatus == S_COMPLETE ||
- pDcChargingInfo->SystemStatus == S_PREPARNING ||
- pDcChargingInfo->SystemStatus == S_IDLE) {
- SetGfdConfig(targetID, GFD_IDLE);
- }
- }
- }
- void GetRelayOutputStatus(void)
- {
- if (Query_Relay_Output(Uart5Fd, ADDR_RELAY, ®Relay) == PASS) {
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
- #endif
- }
- }
- void GetPresentInputVol(void)
- {
- static uint8_t _threePhaseOvp[3] = {0, 0, 0};
- static uint8_t _threePhaseUvp[3] = {0, 0, 0};
- PresentInputVoltage inputVoltage = {0};
- if (Query_Present_InputVoltage(Uart5Fd, ADDR_RELAY, &inputVoltage) == PASS) {
-
- pSysInfo->InputVoltageR = ShmRelayModuleData->InputL1Volt = inputVoltage.L1N_L12;
- pSysInfo->InputVoltageS = ShmRelayModuleData->InputL2Volt = inputVoltage.L2N_L23;
- pSysInfo->InputVoltageT = ShmRelayModuleData->InputL3Volt = inputVoltage.L3N_L31;
-
-
- if (pSysInfo->ChargerType == _CHARGER_TYPE_IEC) {
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == NO) {
- if (inputVoltage.L1N_L12 < VIN_MIN_VOLTAGE_IEC) {
- log_info("In Uvp L1N_L12 = %f \n", inputVoltage.L1N_L12);
- if (_threePhaseUvp[0] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = YES;
- } else {
- _threePhaseUvp[0] += 1;
- }
- }
- } else {
- if (inputVoltage.L1N_L12 > VIN_MIN_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = NO;
- _threePhaseUvp[0] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == NO) {
- if (inputVoltage.L2N_L23 < VIN_MIN_VOLTAGE_IEC) {
- log_info("In Uvp L2N_L23 = %f \n", inputVoltage.L2N_L23);
- if (_threePhaseUvp[1] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = YES;
- } else {
- _threePhaseUvp[1] += 1;
- }
- }
- } else {
- if (inputVoltage.L2N_L23 > VIN_MIN_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = NO;
- _threePhaseUvp[1] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == NO) {
- if (inputVoltage.L3N_L31 < VIN_MIN_VOLTAGE_IEC) {
- log_info("In Uvp L3N_L31 = %f \n", inputVoltage.L3N_L31);
- if (_threePhaseUvp[2] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = YES;
- } else {
- _threePhaseUvp[2] += 1;
- }
- }
- } else {
- if (inputVoltage.L3N_L31 > VIN_MIN_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = NO;
- _threePhaseUvp[2] = 0;
- }
- }
- } else if (pSysInfo->ChargerType == _CHARGER_TYPE_UL) {
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputUVP == NO) {
- if (inputVoltage.L1N_L12 < VIN_MIN_VOLTAGE_UL) {
- log_info("In Uvp L1N_L12 = %f \n", inputVoltage.L1N_L12);
- if (_threePhaseUvp[0] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = YES;
- } else {
- _threePhaseUvp[0] += 1;
- }
- }
- } else {
- if (inputVoltage.L1N_L12 > VIN_MIN_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputUVP = NO;
- _threePhaseUvp[0] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL2InputUVP == NO) {
- if (inputVoltage.L2N_L23 < VIN_MIN_VOLTAGE_UL) {
- log_info("In Uvp L2N_L23 = %f \n", inputVoltage.L2N_L23);
- if (_threePhaseUvp[1] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = YES;
- } else {
- _threePhaseUvp[1] += 1;
- }
- }
- } else {
- if (inputVoltage.L2N_L23 > VIN_MIN_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputUVP = NO;
- _threePhaseUvp[1] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL3InputUVP == NO) {
- if (inputVoltage.L3N_L31 < VIN_MIN_VOLTAGE_UL) {
- log_info("In Uvp L3N_L31 = %f \n", inputVoltage.L3N_L31);
- if (_threePhaseUvp[2] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = YES;
- } else {
- _threePhaseUvp[2] += 1;
- }
- }
- } else {
- if (inputVoltage.L3N_L31 > VIN_MIN_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputUVP = NO;
- _threePhaseUvp[2] = 0;
- }
- }
- }
-
-
- if (pSysInfo->ChargerType == _CHARGER_TYPE_IEC) {
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == NO) {
- if (inputVoltage.L1N_L12 > VIN_MAX_VOLTAGE_IEC) {
- log_info("In Ovp L1N_L12 = %f \n", inputVoltage.L1N_L12);
- if (_threePhaseOvp[0] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = YES;
- } else {
- _threePhaseOvp[0] += 1;
- }
- }
- } else {
- if (inputVoltage.L1N_L12 < VIN_MAX_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = NO;
- _threePhaseOvp[0] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
- if (inputVoltage.L2N_L23 > VIN_MAX_VOLTAGE_IEC) {
- log_info("In Ovp L2N_L23 = %f \n", inputVoltage.L2N_L23);
- if (_threePhaseOvp[1] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = YES;
- } else {
- _threePhaseOvp[1] += 1;
- }
- }
- } else {
- if (inputVoltage.L2N_L23 < VIN_MAX_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = NO;
- _threePhaseOvp[1] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL3InputOVP == NO) {
- if (inputVoltage.L3N_L31 > VIN_MAX_VOLTAGE_IEC) {
- log_info("In Ovp L3N_L31 = %f \n", inputVoltage.L3N_L31);
- if (_threePhaseOvp[2] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = YES;
- } else {
- _threePhaseOvp[2] += 1;
- }
- }
- } else {
- if (inputVoltage.L3N_L31 < VIN_MAX_REV_VOLTAGE_IEC) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = NO;
- _threePhaseOvp[2] = 0;
- }
- }
- } else if (pSysInfo->ChargerType == _CHARGER_TYPE_UL) {
- if (pAlarmCode->AlarmEvents.bits.SystemL1InputOVP == NO) {
- if (inputVoltage.L1N_L12 > VIN_MAX_VOLTAGE_UL) {
- log_info("In Ovp L1N_L12 = %f \n", inputVoltage.L1N_L12);
- if (_threePhaseOvp[0] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = YES;
- } else {
- _threePhaseOvp[0] += 0;
- }
- }
- } else {
- if (inputVoltage.L1N_L12 < VIN_MAX_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL1InputOVP = NO;
- _threePhaseOvp[0] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
- if (inputVoltage.L2N_L23 > VIN_MAX_VOLTAGE_UL) {
- log_info("In Ovp L2N_L23 = %f \n", inputVoltage.L2N_L23);
- if (_threePhaseOvp[1] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = YES;
- } else {
- _threePhaseOvp[1] += 0;
- }
- }
- } else {
- if (inputVoltage.L2N_L23 < VIN_MAX_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL2InputOVP = NO;
- _threePhaseOvp[1] = 0;
- }
- }
- if (pAlarmCode->AlarmEvents.bits.SystemL2InputOVP == NO) {
- if (inputVoltage.L3N_L31 > VIN_MAX_VOLTAGE_UL) {
- log_info("In Ovp L3N_L31 = %f \n", inputVoltage.L3N_L31);
- if (_threePhaseOvp[2] >= OVP_UVP_CHK_COUNT) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = YES;
- } else {
- _threePhaseOvp[2] += 1;
- }
- }
- } else {
- if (inputVoltage.L3N_L31 < VIN_MAX_REV_VOLTAGE_UL) {
- pAlarmCode->AlarmEvents.bits.SystemL3InputOVP = NO;
- _threePhaseOvp[2] = 0;
- }
- }
- }
- }
- }
- void GetPersentOutputVol(void)
- {
- uint8_t index = 0;
- uint8_t targetID = 0;
- struct ChargingInfoData *pDcChargingInfo = NULL;
- PresentOutputVoltage outputVoltage = {0};
- if (Query_Present_OutputVoltage(Uart5Fd, ADDR_RELAY, &outputVoltage) != PASS) {
- return;
- }
-
-
-
-
-
-
- ShmRelayModuleData->Gun1FuseOutputVolt = outputVoltage.behindFuse_Voltage_C1;
- ShmRelayModuleData->Gun1RelayOutputVolt = outputVoltage.behindRelay_Voltage_C1;
- ShmRelayModuleData->Gun2FuseOutputVolt = outputVoltage.behindFuse_Voltage_C2;
- ShmRelayModuleData->Gun2RelayOutputVolt = outputVoltage.behindRelay_Voltage_C2;
- for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
- targetID = getCommTargetID(index);
- switch (targetID) {
- case 0x01:
- #if defined DD360 || defined DD360Audi || defined DD360ComBox
- pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun1RelayOutputVolt;
- pDcChargingInfo->PresentChargingCurrent = ShmRelayModuleData->Gun1FuseOutputVolt / 10;
- pDcChargingInfo->PresentChargingVoltage = pDcChargingInfo->FireChargingVoltage / 10;
- pDcChargingInfo->FuseChargingVoltage = pDcChargingInfo->FireChargingVoltage;
- break;
- #endif
- pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun1RelayOutputVolt;
- pDcChargingInfo->FuseChargingVoltage = ShmRelayModuleData->Gun1FuseOutputVolt;
- break;
- case 0x02:
- #if defined DD360 || defined DD360Audi || defined DD360ComBox
- pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun2RelayOutputVolt;
- pDcChargingInfo->PresentChargingCurrent = ShmRelayModuleData->Gun2FuseOutputVolt / 10;
- pDcChargingInfo->PresentChargingVoltage = pDcChargingInfo->FireChargingVoltage / 10;
- pDcChargingInfo->FuseChargingVoltage = pDcChargingInfo->FireChargingVoltage;
- break;
- #endif
- pDcChargingInfo->FireChargingVoltage = ShmRelayModuleData->Gun2RelayOutputVolt;
- pDcChargingInfo->FuseChargingVoltage = ShmRelayModuleData->Gun2FuseOutputVolt;
- break;
- }
-
-
-
-
-
-
-
-
-
- }
- }
- void SetRtcData_Relay(void)
- {
- struct timeb csuTime;
- struct tm *tmCSU;
- Rtc rtc = {0};
- ftime(&csuTime);
- tmCSU = localtime(&csuTime.time);
-
-
-
- rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
- rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
- rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
- rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
- rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
- rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
- rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
- rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
- rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
- rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
- rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
- rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
- rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
- rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
- if (Config_Rtc_Data(Uart5Fd, ADDR_RELAY, &rtc) == PASS) {
-
- }
- }
- void SetModelName_Relay(void)
- {
- if (Config_Model_Name(Uart5Fd, ADDR_RELAY, pSysConfig->ModelName) == PASS) {
-
- }
- }
- void GetFwAndHwVersion_Relay(void)
- {
- Ver ver = {0};
- if (Query_FW_Ver(Uart5Fd, ADDR_RELAY, &ver) == PASS) {
-
- strcpy((char *)ShmRelayModuleData->version, ver.Version_FW);
-
- strcpy((char *)pSysInfo->RelayModuleFwRev, ver.Version_FW);
-
- }
- if (Query_HW_Ver(Uart5Fd, ADDR_RELAY, &ver) == PASS) {
-
- strcpy((char *)pSysInfo->RelayModuleHwRev, ver.Version_FW);
-
- }
- }
- static void outputRelayInit(int fd)
- {
- memset((uint8_t *)&outputRelay, 0, sizeof(Relay));
- if (Config_Relay_Output(fd, ADDR_RELAY, &outputRelay) != PASS) {
- log_info("Config_Relay_Output fail \n");
- }
- }
- void RelayBoardTask(int uartFD)
- {
- pid_t pid = fork();
- if (pid == 0) {
- bool isCharging = false;
- bool isStopChargingCount = false;
- uint8_t i = 0;
- int isContinue = 1;
- struct ChargingInfoData *pDcChargingInfo = NULL;
-
- pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
- pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
- pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
- ShmRelayModuleData = (struct RelayModuleData *)GetShmRelayModuleData();
- ShmPsuData = (struct PsuData *)GetShmPsuData();
- ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
- ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
- Uart5Fd = uartFD;
-
- outputRelayInit(uartFD);
- while (isContinue) {
-
- if (ShmRelayModuleData->SelfTest_Comp == NO) {
- GetFwAndHwVersion_Relay();
- SetModelName_Relay();
- SetRtcData_Relay();
- sleep(1);
- continue;
- }
-
-
- GetPersentOutputVol();
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
-
- GetPresentInputVol();
- #endif
-
- regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
- GetRelayOutputStatus();
- for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
-
- CableCheckDetected(i);
-
- CheckK1K2RelayOutput(i);
-
- SetK1K2RelayStatus(i);
- #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
- if (pSysConfig->PhaseLossPolicy == YES) {
- CheckPhaseLossStatus(i);
- }
- CheckAcInputOvpStatus(i);
- #endif
- if (pDcChargingInfo->SystemStatus == S_IDLE ||
- pDcChargingInfo->SystemStatus == S_RESERVATION ||
- pDcChargingInfo->SystemStatus == S_MAINTAIN) {
-
-
- _isOvpChkTimeFlag[i] = NO;
-
- }
- if (pDcChargingInfo->SystemStatus == S_BOOTING ||
- (pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK &&
- pDcChargingInfo->SystemStatus <= S_COMPLETE) ||
- (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
- pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1) ||
- pSysInfo->WaitForPlugit == YES ||
- (pSysInfo->PageIndex >= _LCM_AUTHORIZING &&
- pSysInfo->PageIndex <= _LCM_WAIT_FOR_PLUG)
- ) {
- pDcChargingInfo->IsReadyToCharging = YES;
- isCharging = true;
-
-
-
-
-
-
-
-
-
- if (pDcChargingInfo->SystemStatus == S_CHARGING) {
- CheckOutputPowerOverCarReq(i);
-
- }
-
- } else {
- pDcChargingInfo->IsReadyToCharging = NO;
- }
- }
-
- GetGfdAdc();
-
- SetParalleRelayStatus();
-
-
-
-
-
-
- if (isCharging ||
- (ShmPsuData->Work_Step >= _TEST_MODE &&
- ShmPsuData->Work_Step <= _TEST_MODE)) {
- isStopChargingCount = false;
- outputRelay.relay_event.bits.AC_Contactor = YES;
- } else {
- if (!isStopChargingCount) {
- gettimeofday(&_close_ac_contactor, NULL);
- isStopChargingCount = true;
- } else {
- if ((outputRelay.relay_event.bits.AC_Contactor == YES &&
- GetTimeoutValue(_close_ac_contactor) / 1000 >= (TEN_MINUTES * 1000))) {
- outputRelay.relay_event.bits.AC_Contactor = NO;
- }
- }
- }
- if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == ABNORMAL) {
- outputRelay.relay_event.bits.AC_Contactor = NO;
- }
- if (pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == ABNORMAL) {
- RunForceStopProcess();
- outputRelay.relay_event.bits.AC_Contactor = NO;
- }
- if (ShmPsuData->Work_Step >= _TEST_MODE && ShmPsuData->Work_Step <= _TEST_MODE) {
- outputRelay.relay_event.bits.Gun1_N = outputRelay.relay_event.bits.Gun1_P = YES;
- }
-
- if (IsNoneMatchRelayStatus()) {
- if (Config_Relay_Output(Uart5Fd, ADDR_RELAY, &outputRelay)) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
- }
- usleep(100000);
- }
- }
|