|
@@ -22,10 +22,20 @@ static struct RelayModuleData *ShmRelayModuleData = NULL;
|
|
|
static struct PsuData *ShmPsuData = NULL;
|
|
|
static struct PrimaryMcuData *ShmPrimaryMcuData = NULL;
|
|
|
static DcCommonInfo *ShmDcCommonData = NULL;
|
|
|
+static struct WARNING_CODE_INFO *pSysWarning = NULL;
|
|
|
+static struct LedModuleData *ShmLedModuleData = NULL;
|
|
|
+static struct FanModuleData *ShmFanModuleData = NULL;
|
|
|
|
|
|
static Relay outputRelay = {0};
|
|
|
static Relay regRelay = {0};
|
|
|
static int Uart5Fd = 0;
|
|
|
+static struct timeval gFanBoardRunTimer;
|
|
|
+static uint16_t _setFanSpeed = 0;
|
|
|
+static uint16_t fanSpeedSmoothValue = 500;
|
|
|
+
|
|
|
+static Led_Color cur_led_color = {COLOR_MIN_LV};
|
|
|
+static Led_Color led_color;
|
|
|
+static struct timeval _led_priority_time;
|
|
|
|
|
|
//static bool _isRelayWelding[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
|
|
|
//static struct timeval _checkRelayWeldingTimer[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
|
|
@@ -72,24 +82,21 @@ static void StopCheckRelayInfo(uint8_t _chkIndex)
|
|
|
static void StartCheckRelayInfo(uint8_t _chkIndex, uint8_t toState)
|
|
|
{
|
|
|
// SMR1 *2 + SMR2 * 2 + Parallel * 2
|
|
|
- static time_t lastCheckRelayStateTimer[6] = {0};
|
|
|
- time_t nowTime = {0};
|
|
|
+ static struct timeval lastCheckRelayStateTimer[6] = {0};
|
|
|
//uint8_t *pCheckRelayState = (uint8_t *)ShmDcCommonData->CheckRelayStatus[_chkIndex];
|
|
|
|
|
|
if (ShmDcCommonData->CheckRelayStatus[_chkIndex] == STOP) {
|
|
|
- time(&lastCheckRelayStateTimer[_chkIndex]);
|
|
|
+ gettimeofday(&lastCheckRelayStateTimer[_chkIndex], NULL);
|
|
|
ShmDcCommonData->CheckRelayStatus[_chkIndex] = START;
|
|
|
} else {
|
|
|
- time(&nowTime);
|
|
|
-
|
|
|
- if (nowTime - lastCheckRelayStateTimer[_chkIndex] >= 1) {
|
|
|
+ if ((GetTimeoutValue(lastCheckRelayStateTimer[_chkIndex]) / 1000000) >= 1) {
|
|
|
//log_info("relay welding or driving fault = %d \n", _chkIndex);
|
|
|
if (toState == 1) {
|
|
|
ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_DRIVING;
|
|
|
} else {
|
|
|
ShmDcCommonData->CheckRelayStatus[_chkIndex] = RELAY_STATUS_ERROR_WELDING;
|
|
|
}
|
|
|
- lastCheckRelayStateTimer[_chkIndex] = nowTime;
|
|
|
+ gettimeofday(&lastCheckRelayStateTimer[_chkIndex], NULL);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -377,13 +384,16 @@ void CheckOutputPowerOverCarReq(uint8_t index)
|
|
|
(pDcChargingInfo->EvBatterytargetVoltage * 10));
|
|
|
if ((GetTimeoutValue(_checkOutputVolProtectTimer[index]) / 1000) >= OUTPUT_VOL_CHK_TIME) {
|
|
|
if (pDcChargingInfo->Type == _Type_Chademo) {
|
|
|
- pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = YES;
|
|
|
+ //pAlarmCode->AlarmEvents.bits.SystemChademoOutputOVP = YES;
|
|
|
+ ShmDcCommonData->ConnectErrList[index].GunBits.ChaConnectOVP = YES;
|
|
|
} else if (pDcChargingInfo->Type == _Type_CCS_2) {
|
|
|
- pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = YES;
|
|
|
+ //pAlarmCode->AlarmEvents.bits.SystemCcsOutputOVP = YES;
|
|
|
+ ShmDcCommonData->ConnectErrList[index].GunBits.CCSConnectOVP = YES;
|
|
|
} else if (pDcChargingInfo->Type == _Type_GB) {
|
|
|
- pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = YES;
|
|
|
+ //pAlarmCode->AlarmEvents.bits.SystemGbOutputOVP = YES;
|
|
|
+ ShmDcCommonData->ConnectErrList[index].GunBits.GBTConnectOVP = YES;
|
|
|
}
|
|
|
- pDcChargingInfo->StopChargeFlag = YES;
|
|
|
+ //pDcChargingInfo->StopChargeFlag = YES;
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
@@ -550,11 +560,27 @@ void SetK1K2RelayStatus(uint8_t index)
|
|
|
//if (pDcChargingInfo->RelayWeldingCheck != YES) {
|
|
|
// break;
|
|
|
//}
|
|
|
-
|
|
|
if (pRegGunPNState->GunN == NO) {
|
|
|
- pOutputGunPNState->GunN = YES;
|
|
|
- } else if (pRegGunPNState->GunP == NO) {
|
|
|
- pOutputGunPNState->GunP = YES;
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus != GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunN = YES;
|
|
|
+ } else {
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (pRegGunPNState->GunP == NO) {
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus != GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunP = YES;
|
|
|
+ } else {
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ }
|
|
|
}
|
|
|
break;
|
|
|
|
|
@@ -562,11 +588,12 @@ void SetK1K2RelayStatus(uint8_t index)
|
|
|
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;
|
|
|
- }
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
+ }
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
}
|
|
|
break;
|
|
|
|
|
@@ -582,6 +609,10 @@ void SetK1K2RelayStatus(uint8_t index)
|
|
|
// pRegGunPNState->GunP = NO;
|
|
|
// }
|
|
|
//}
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
+ }
|
|
|
break;
|
|
|
|
|
|
case S_CCS_PRECHARGE_ST1:
|
|
@@ -596,6 +627,10 @@ void SetK1K2RelayStatus(uint8_t index)
|
|
|
// pOutputPreChargingState->CcsPrecharge = NO;
|
|
|
// }
|
|
|
//}
|
|
|
+ if (pDcChargingInfo->GroundFaultStatus == GFD_FAIL) {
|
|
|
+ pOutputGunPNState->GunP = NO;
|
|
|
+ pOutputGunPNState->GunN = NO;
|
|
|
+ }
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -721,7 +756,7 @@ void CableCheckDetected(uint8_t index)
|
|
|
pSysConfig->AlwaysGfdFlag)
|
|
|
) {
|
|
|
if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
|
|
|
- pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
|
|
|
+ pDcChargingInfo->SystemStatus < S_TERMINATING) ||
|
|
|
(pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
|
|
|
pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
|
|
|
) {
|
|
@@ -735,7 +770,7 @@ void CableCheckDetected(uint8_t index)
|
|
|
) {
|
|
|
SetGfdConfig(targetID, GFD_PRECHARGE);
|
|
|
} else if ((pDcChargingInfo->SystemStatus >= S_CHARGING) &&
|
|
|
- (pDcChargingInfo->SystemStatus <= S_TERMINATING)
|
|
|
+ (pDcChargingInfo->SystemStatus < S_TERMINATING)
|
|
|
) {
|
|
|
if ((pDcChargingInfo->Type == _Type_GB) ||
|
|
|
(pDcChargingInfo->Type == _Type_Chademo)
|
|
@@ -745,9 +780,7 @@ void CableCheckDetected(uint8_t index)
|
|
|
SetGfdConfig(targetID, GFD_CHARGING);
|
|
|
}
|
|
|
}
|
|
|
- } else if (pDcChargingInfo->SystemStatus == S_COMPLETE ||
|
|
|
- pDcChargingInfo->SystemStatus == S_PREPARNING ||
|
|
|
- pDcChargingInfo->SystemStatus == S_IDLE) {
|
|
|
+ } else {
|
|
|
SetGfdConfig(targetID, GFD_IDLE);
|
|
|
}
|
|
|
}
|
|
@@ -1124,6 +1157,495 @@ static void outputRelayInit(int fd)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+static bool IsRelayProcessNeedPause(void)
|
|
|
+{
|
|
|
+ bool _pause = false;
|
|
|
+ static bool isPause = false;
|
|
|
+ struct ChargingInfoData *pDcChargingInfo = NULL;
|
|
|
+
|
|
|
+ for (uint8_t i = 0; i < pSysConfig->TotalConnectorCount; i++)
|
|
|
+ {
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
|
|
|
+ if(pDcChargingInfo->SystemStatus == S_UPDATE)
|
|
|
+ {
|
|
|
+ _pause = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(isPause != _pause)
|
|
|
+ {
|
|
|
+ log_info("Relay Process Now Is %s \n", _pause == true ? "Paused" : "Continued");
|
|
|
+ }
|
|
|
+ isPause = _pause;
|
|
|
+
|
|
|
+ return _pause;
|
|
|
+}
|
|
|
+
|
|
|
+static void SetFanModuleSpeed(void)
|
|
|
+{
|
|
|
+ {
|
|
|
+ FanSpeed _fanSpeed = {0};
|
|
|
+
|
|
|
+ _setFanSpeed += fanSpeedSmoothValue;
|
|
|
+
|
|
|
+ if (_setFanSpeed >= ShmFanModuleData->SetFan1Speed) {
|
|
|
+ _setFanSpeed = ShmFanModuleData->SetFan1Speed;
|
|
|
+ }
|
|
|
+
|
|
|
+ //printf("_setFanSpeed = %d \n", _setFanSpeed);
|
|
|
+ _fanSpeed.speed[0] = _setFanSpeed;
|
|
|
+
|
|
|
+ _fanSpeed.speed[1] = _setFanSpeed;
|
|
|
+
|
|
|
+ _fanSpeed.speed[2] = _setFanSpeed;
|
|
|
+
|
|
|
+ _fanSpeed.speed[3] = _setFanSpeed;
|
|
|
+
|
|
|
+ if (Config_Fan_Speed(Uart5Fd, ADDR_FAN, &_fanSpeed) == PASS) {
|
|
|
+ //log_info("successfully Fan\n");
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 風扇速度
|
|
|
+static void GetFanSpeed(void)
|
|
|
+{
|
|
|
+ FanSpeed fanSpeed = {0};
|
|
|
+
|
|
|
+ //log_info("Get fan board speed \n");
|
|
|
+ if (Query_Fan_Speed(Uart5Fd, ADDR_FAN, &fanSpeed) == PASS) {
|
|
|
+ ShmFanModuleData->PresentFan1Speed = fanSpeed.speed[0];
|
|
|
+ ShmFanModuleData->PresentFan2Speed = fanSpeed.speed[1];
|
|
|
+ ShmFanModuleData->PresentFan3Speed = fanSpeed.speed[2];
|
|
|
+ ShmFanModuleData->PresentFan4Speed = fanSpeed.speed[3];
|
|
|
+// log_info("SystemFanRotaSpeed_1 = %d \n", fanSpeed.speed[0]);
|
|
|
+// log_info("SystemFanRotaSpeed_2 = %d \n", fanSpeed.speed[1]);
|
|
|
+// log_info("SystemFanRotaSpeed_3 = %d \n", fanSpeed.speed[2]);
|
|
|
+// log_info("SystemFanRotaSpeed_4 = %d \n", fanSpeed.speed[3]);
|
|
|
+ // Config_Fan_Speed(Uart5Fd, ADDR_FAN, &fanSpeed[0]);
|
|
|
+ //SysInfoData (SystemFanRotaSpeed)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void GetFanSpeedByFunction(void)
|
|
|
+{
|
|
|
+ if (pSysConfig->SwitchDebugFlag == YES) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 風控修改 :
|
|
|
+ // ******************************************************* //
|
|
|
+ //
|
|
|
+ // 當前PSU輸出總 KW PSU Temp
|
|
|
+ // 30 x -------------------- x ---------- + 14 x (PSU Temp - 45)
|
|
|
+ // 當前樁最大功率 KW 45
|
|
|
+ //
|
|
|
+ // ******************************************************* //
|
|
|
+
|
|
|
+ // 當前樁最大功率 KW : ShmPsuData->SystemAvailablePower
|
|
|
+ uint32_t _maxPower = ShmPsuData->SystemAvailablePower;
|
|
|
+ // 當前PSU輸出總 KW & PSU Temp :
|
|
|
+ uint8_t temp = 0;
|
|
|
+ uint8_t index = 0;
|
|
|
+ uint8_t count = 0;
|
|
|
+ uint8_t gunIndex = 0;
|
|
|
+ uint8_t _temp_diff = 0;
|
|
|
+ float power = 0;
|
|
|
+ double _pw_rate = 0;
|
|
|
+ double _temp_rate = 0;
|
|
|
+ struct ChargingInfoData *pDcChargingInfo = NULL;
|
|
|
+
|
|
|
+ for (index = 0; index < ShmPsuData->GroupCount; index++) {
|
|
|
+ for (count = 0; count < ShmPsuData->PsuGroup[index].GroupPresentPsuQuantity; count++) {
|
|
|
+ if (temp < ShmPsuData->PsuGroup[index].PsuModule[count].ExletTemp) {
|
|
|
+ temp = ShmPsuData->PsuGroup[index].PsuModule[count].ExletTemp;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
|
|
|
+
|
|
|
+ power += (pDcChargingInfo->PresentChargingPower * 10);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (_maxPower > 0) {
|
|
|
+ _pw_rate = power / (double)_maxPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (temp > 0) {
|
|
|
+ _temp_rate = (double)temp / 50;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (temp > 45) {
|
|
|
+ _temp_diff = temp - 70;
|
|
|
+ }
|
|
|
+
|
|
|
+ ShmFanModuleData->TestFanSpeed = (((50 * _pw_rate * _temp_rate) + (0.5 * _temp_diff)) / 100) * MAX_FAN_SPEED;
|
|
|
+
|
|
|
+ if (ShmFanModuleData->TestFanSpeed > MAX_FAN_SPEED) {
|
|
|
+ ShmFanModuleData->TestFanSpeed = MAX_FAN_SPEED;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ShmFanModuleData->TestFanSpeed < 0) {
|
|
|
+ ShmFanModuleData->TestFanSpeed = 0;
|
|
|
+ }
|
|
|
+//
|
|
|
+// printf("power = %f \n", power);
|
|
|
+// printf("_maxPower = %d \n", _maxPower);
|
|
|
+// printf("temp = %d \n", temp);
|
|
|
+//
|
|
|
+// printf("_pw_rate = %f \n", _pw_rate);
|
|
|
+// printf("_temp_rate = %f \n", _temp_rate);
|
|
|
+// printf("_temp_diff = %d \n", _temp_diff);
|
|
|
+// printf("fan rate = %f \n", (30 * _pw_rate * _temp_rate + 14 * _temp_diff));
|
|
|
+// printf("ShmFanModuleData->TestFanSpeed = %d \n", ShmFanModuleData->TestFanSpeed);
|
|
|
+}
|
|
|
+
|
|
|
+static void SetRtcData_Fan(void)
|
|
|
+{
|
|
|
+ struct timeb csuTime;
|
|
|
+ struct tm *tmCSU;
|
|
|
+ Rtc rtc = {0};
|
|
|
+
|
|
|
+ ftime(&csuTime);
|
|
|
+ tmCSU = localtime(&csuTime.time);
|
|
|
+ // log_info("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
|
|
|
+ // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
|
|
|
+ // tmCSU->tm_sec);
|
|
|
+
|
|
|
+ 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_FAN, &rtc) == PASS) {
|
|
|
+ //log_info("SetRtc (FB) sucessfully. \n");
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void SetModelName_Fan(void)
|
|
|
+{
|
|
|
+ if (Config_Model_Name(Uart5Fd, ADDR_FAN, pSysConfig->ModelName) == PASS) {
|
|
|
+ log_info("Set Model name PASS = %s \n", pSysConfig->ModelName);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void GetFwAndHwVersion_Fan(void)
|
|
|
+{
|
|
|
+ Ver ver = {0};
|
|
|
+
|
|
|
+ if (Query_FW_Ver(Uart5Fd, ADDR_FAN, &ver) == PASS) {
|
|
|
+ // FanModuleData
|
|
|
+ strcpy((char *)ShmFanModuleData->version, ver.Version_FW);
|
|
|
+ // SystemInfo
|
|
|
+ strcpy((char *)pSysInfo->FanModuleFwRev, ver.Version_FW);
|
|
|
+ //log_info("GetFwAndHwVersion_Fan s1 = %s \n", ver.Version_FW);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Query_HW_Ver(Uart5Fd, ADDR_FAN, &ver) == PASS) {
|
|
|
+ // SystemInfo
|
|
|
+ strcpy((char *)pSysInfo->FanModuleHwRev, ver.Version_FW);
|
|
|
+ //log_info("GetFwAndHwVersion_Fan s2 = %s \n", ver.Version_HW);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void fanBoardSelfTest(void)
|
|
|
+{
|
|
|
+ if (ShmFanModuleData->SelfTest_Comp == YES) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ GetFwAndHwVersion_Fan();
|
|
|
+ SetModelName_Fan();
|
|
|
+ SetRtcData_Fan();
|
|
|
+ sleep(1);
|
|
|
+ gettimeofday(&gFanBoardRunTimer, NULL);
|
|
|
+}
|
|
|
+
|
|
|
+static void fanBoardPorcess(void)
|
|
|
+{
|
|
|
+ if (ShmFanModuleData->SelfTest_Comp == NO) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ShmFanModuleData->SelfTest_Comp == YES ||
|
|
|
+ strlen((char *)pSysInfo->FanModuleFwRev) != 0 ||
|
|
|
+ pSysInfo->FanModuleFwRev[0] != '\0') {
|
|
|
+ ShmFanModuleData->SelfTest_Comp = YES;
|
|
|
+
|
|
|
+ if (GetTimeoutValue(gFanBoardRunTimer) / 1000 >= 1000) {
|
|
|
+ //GetPsuTempForFanSpeed();
|
|
|
+ GetFanSpeedByFunction();
|
|
|
+ GetFanSpeed();
|
|
|
+ pSysInfo->SystemFanRotaSpeed = _setFanSpeed;
|
|
|
+ gettimeofday(&gFanBoardRunTimer, NULL);
|
|
|
+
|
|
|
+ ShmFanModuleData->SetFan1Speed = ShmFanModuleData->TestFanSpeed;
|
|
|
+ ShmFanModuleData->SetFan2Speed = ShmFanModuleData->TestFanSpeed;
|
|
|
+ ShmFanModuleData->SetFan3Speed = ShmFanModuleData->TestFanSpeed;
|
|
|
+ ShmFanModuleData->SetFan4Speed = ShmFanModuleData->TestFanSpeed;
|
|
|
+
|
|
|
+ //log_info("set fan = %d \n", ShmFanModuleData->SetFan1Speed);
|
|
|
+ SetFanModuleSpeed();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void GetFwAndHwVersion_Led(void)
|
|
|
+{
|
|
|
+ Ver ver = {0};
|
|
|
+
|
|
|
+ if (Query_FW_Ver(Uart5Fd, ADDR_LED, &ver) == PASS) {
|
|
|
+ // LedModuleData
|
|
|
+ strcpy((char *) ShmLedModuleData->version, ver.Version_FW);
|
|
|
+ // SystemInfo
|
|
|
+ strcpy((char *) pSysInfo->LedModuleFwRev, ver.Version_FW);
|
|
|
+ log_info("GetFwAndHwVersion_Led s1 = %s \n", ver.Version_FW);
|
|
|
+ ShmLedModuleData->SelfTest_Comp = YES;
|
|
|
+ } else {
|
|
|
+ //log_info("GetFwAndHwVersion_Led fail \n");
|
|
|
+ }
|
|
|
+
|
|
|
+// if (Query_HW_Ver(Uart5Fd, ADDR_LED, &ver) == PASS)
|
|
|
+// {
|
|
|
+// // SystemInfo
|
|
|
+// strcpy((char *) pSysInfo->RelayModuleHwRev, ver.Version_FW);
|
|
|
+// //log_info("GetFwAndHwVersion_Relay s2 = %s \n", ver.Version_HW);
|
|
|
+// }
|
|
|
+}
|
|
|
+
|
|
|
+static bool IsNoneMatchLedColor(void)
|
|
|
+{
|
|
|
+ bool result = false;
|
|
|
+
|
|
|
+ if (cur_led_color.Connect_1_Red != led_color.Connect_1_Red ||
|
|
|
+ cur_led_color.Connect_1_Green != led_color.Connect_1_Green ||
|
|
|
+ cur_led_color.Connect_1_Blue != led_color.Connect_1_Blue ||
|
|
|
+ cur_led_color.Connect_2_Red != led_color.Connect_2_Red ||
|
|
|
+ cur_led_color.Connect_2_Green != led_color.Connect_2_Green ||
|
|
|
+ cur_led_color.Connect_2_Blue != led_color.Connect_2_Blue) {
|
|
|
+ result = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return result;
|
|
|
+}
|
|
|
+
|
|
|
+//static void SetLedColor(struct ChargingInfoData *chargingData_1, struct ChargingInfoData *chargingData_2)
|
|
|
+static void SetLedColor(void)
|
|
|
+{
|
|
|
+ static uint8_t _checkLedChanged = 3;
|
|
|
+ struct ChargingInfoData *chargingData_1 = NULL;
|
|
|
+ struct ChargingInfoData *chargingData_2 = NULL;
|
|
|
+ uint8_t _colorBuf = COLOR_MAX_LV * LED_INTENSITY_BRIGHTEST;
|
|
|
+
|
|
|
+ if (pSysConfig->TotalConnectorCount == 1) {
|
|
|
+ chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
+ chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
+ } else if (pSysConfig->TotalConnectorCount == 2) {
|
|
|
+ chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
+ chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pSysConfig->LedInfo.Intensity == _LED_INTENSITY_DARKEST) {
|
|
|
+ _colorBuf = COLOR_MAX_LV * LED_INTENSITY_DARKEST;
|
|
|
+ } else if (pSysConfig->LedInfo.Intensity == _LED_INTENSITY_MEDIUM) {
|
|
|
+ _colorBuf = COLOR_MAX_LV * LED_INTENSITY_MEDIUM;
|
|
|
+ }
|
|
|
+
|
|
|
+ //printf("chargingData_1->SystemStatus=%d\n",chargingData_1->SystemStatus);
|
|
|
+ //printf("chargingData_2->SystemStatus=%d\n",chargingData_2->SystemStatus);
|
|
|
+ //printf("pSysWarning->Level=%d\n",pSysWarning->Level);
|
|
|
+ if (pSysWarning->Level == 2) {
|
|
|
+ led_color.Connect_1_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Red = _colorBuf;
|
|
|
+ led_color.Connect_2_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Red = _colorBuf;
|
|
|
+ } else {
|
|
|
+ if (pSysInfo->IsAlternatvieConf) {
|
|
|
+ if ((chargingData_1->SystemStatus == S_BOOTING ||
|
|
|
+ chargingData_1->SystemStatus == S_IDLE ||
|
|
|
+ chargingData_1->SystemStatus == S_RESERVATION) &&
|
|
|
+ (chargingData_2->SystemStatus == S_BOOTING ||
|
|
|
+ chargingData_2->SystemStatus == S_IDLE ||
|
|
|
+ chargingData_2->SystemStatus == S_RESERVATION)) {
|
|
|
+#if defined DD360Audi
|
|
|
+ led_color.Connect_1_Green = _colorBuf;
|
|
|
+ led_color.Connect_1_Blue = _colorBuf;
|
|
|
+ led_color.Connect_1_Red = _colorBuf;
|
|
|
+
|
|
|
+ led_color.Connect_2_Green = _colorBuf;
|
|
|
+ led_color.Connect_2_Blue = _colorBuf;
|
|
|
+ led_color.Connect_2_Red = _colorBuf;
|
|
|
+#else
|
|
|
+ led_color.Connect_1_Green = _colorBuf;
|
|
|
+ led_color.Connect_1_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Red = COLOR_MIN_LV;
|
|
|
+
|
|
|
+ led_color.Connect_2_Green = _colorBuf;
|
|
|
+ led_color.Connect_2_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Red = COLOR_MIN_LV;
|
|
|
+#endif
|
|
|
+ } else if ((chargingData_1->SystemStatus >= S_AUTHORIZING &&
|
|
|
+ chargingData_1->SystemStatus <= S_COMPLETE) ||
|
|
|
+ (chargingData_1->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
|
|
|
+ chargingData_1->SystemStatus <= S_CCS_PRECHARGE_ST1) ||
|
|
|
+ (chargingData_2->SystemStatus >= S_AUTHORIZING &&
|
|
|
+ chargingData_2->SystemStatus <= S_COMPLETE) ||
|
|
|
+ (chargingData_2->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
|
|
|
+ chargingData_2->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
|
|
|
+ led_color.Connect_1_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Blue = _colorBuf;
|
|
|
+ led_color.Connect_1_Red = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Blue = _colorBuf;
|
|
|
+ led_color.Connect_2_Red = COLOR_MIN_LV;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (chargingData_1->SystemStatus == S_BOOTING ||
|
|
|
+ chargingData_1->SystemStatus == S_IDLE ||
|
|
|
+ chargingData_1->SystemStatus == S_RESERVATION ||
|
|
|
+ chargingData_1->SystemStatus == S_MAINTAIN) {
|
|
|
+
|
|
|
+ if (chargingData_1->IsAvailable == NO) { //For Audi
|
|
|
+ led_color.Connect_1_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Red = _colorBuf;
|
|
|
+ } else {
|
|
|
+#if defined DD360Audi
|
|
|
+ led_color.Connect_1_Green = _colorBuf;
|
|
|
+ led_color.Connect_1_Blue = _colorBuf;
|
|
|
+ led_color.Connect_1_Red = _colorBuf;
|
|
|
+#else
|
|
|
+ led_color.Connect_1_Green = _colorBuf;
|
|
|
+ led_color.Connect_1_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Red = COLOR_MIN_LV;
|
|
|
+#endif
|
|
|
+ }
|
|
|
+ } else if ((chargingData_1->SystemStatus >= S_AUTHORIZING &&
|
|
|
+ chargingData_1->SystemStatus <= S_COMPLETE) ||
|
|
|
+ (chargingData_1->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
|
|
|
+ chargingData_1->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
|
|
|
+ led_color.Connect_1_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_1_Blue = _colorBuf;
|
|
|
+ led_color.Connect_1_Red = COLOR_MIN_LV;
|
|
|
+ }
|
|
|
+
|
|
|
+ // --------------------------------------------------------------------------
|
|
|
+ if (chargingData_2->SystemStatus == S_BOOTING ||
|
|
|
+ chargingData_2->SystemStatus == S_IDLE ||
|
|
|
+ chargingData_2->SystemStatus == S_RESERVATION ||
|
|
|
+ chargingData_2->SystemStatus == S_MAINTAIN) {
|
|
|
+ if (chargingData_2->IsAvailable == NO) {
|
|
|
+ led_color.Connect_2_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Red = _colorBuf;
|
|
|
+ } else {
|
|
|
+#if defined DD360Audi
|
|
|
+ led_color.Connect_2_Green = _colorBuf;
|
|
|
+ led_color.Connect_2_Blue = _colorBuf;
|
|
|
+ led_color.Connect_2_Red = _colorBuf;
|
|
|
+#else
|
|
|
+ led_color.Connect_2_Green = _colorBuf;
|
|
|
+ led_color.Connect_2_Blue = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Red = COLOR_MIN_LV;
|
|
|
+#endif
|
|
|
+ }
|
|
|
+ } else if ((chargingData_2->SystemStatus >= S_AUTHORIZING &&
|
|
|
+ chargingData_2->SystemStatus <= S_COMPLETE) ||
|
|
|
+ (chargingData_2->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
|
|
|
+ chargingData_2->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
|
|
|
+ led_color.Connect_2_Green = COLOR_MIN_LV;
|
|
|
+ led_color.Connect_2_Blue = _colorBuf;
|
|
|
+ led_color.Connect_2_Red = COLOR_MIN_LV;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (_checkLedChanged > 0) {
|
|
|
+ if (Config_Led_Color(Uart5Fd, ADDR_LED, &led_color) == PASS) {
|
|
|
+ _checkLedChanged--;
|
|
|
+
|
|
|
+ cur_led_color.Connect_1_Red = led_color.Connect_1_Red;
|
|
|
+ cur_led_color.Connect_1_Green = led_color.Connect_1_Green;
|
|
|
+ cur_led_color.Connect_1_Blue = led_color.Connect_1_Blue;
|
|
|
+ cur_led_color.Connect_2_Red = led_color.Connect_2_Red;
|
|
|
+ cur_led_color.Connect_2_Green = led_color.Connect_2_Green;
|
|
|
+ cur_led_color.Connect_2_Blue = led_color.Connect_2_Blue;
|
|
|
+ }
|
|
|
+ } else if (IsNoneMatchLedColor()) {
|
|
|
+ _checkLedChanged = 3;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void LEDBoardSelfTest(void)
|
|
|
+{
|
|
|
+ // 自檢階段處理,自檢階段如果讀不到版號則代表該系統沒有掛燈板
|
|
|
+ if (ShmLedModuleData->SelfTest_Comp == YES) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+#if defined DD360 ||defined DD360Audi
|
|
|
+ GetFwAndHwVersion_Led();
|
|
|
+ sleep(1);
|
|
|
+ gettimeofday(&_led_priority_time, NULL);
|
|
|
+
|
|
|
+ return;
|
|
|
+#endif //defined DD360 || defined DD360Audi
|
|
|
+
|
|
|
+ // 自檢階段
|
|
|
+ if (pSysInfo->SelfTestSeq <= _STEST_PSU_CAP) {
|
|
|
+ GetFwAndHwVersion_Led();
|
|
|
+ sleep(1);
|
|
|
+ gettimeofday(&_led_priority_time, NULL);
|
|
|
+ } else {
|
|
|
+ // 自檢階段沒有問到版號
|
|
|
+ if (pAlarmCode->AlarmEvents.bits.LedboardStestFail == NO) {
|
|
|
+ pAlarmCode->AlarmEvents.bits.LedboardStestFail = YES;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void LEDBoardProcess(void)
|
|
|
+{
|
|
|
+ //struct ChargingInfoData *pDcChargingInfo0 = NULL;
|
|
|
+ //struct ChargingInfoData *pDcChargingInfo1 = NULL;
|
|
|
+
|
|
|
+ if (ShmLedModuleData->SelfTest_Comp == NO) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (GetTimeoutValue(_led_priority_time) / 1000 >= 1000) {
|
|
|
+
|
|
|
+ //if (pSysConfig->TotalConnectorCount == 1) {
|
|
|
+ // pDcChargingInfo0 = (struct ChargeingInfoData *)GetDcChargingInfoData(0);
|
|
|
+ // SetLedColor(pDcChargingInfo0, pDcChargingInfo0);
|
|
|
+ //} else if (pSysConfig->TotalConnectorCount == 2) {
|
|
|
+ // pDcChargingInfo0 = (struct ChargeingInfoData *)GetDcChargingInfoData(0);
|
|
|
+ // pDcChargingInfo1 = (struct ChargeingInfoData *)GetDcChargingInfoData(1);
|
|
|
+ // SetLedColor(pDcChargingInfo0, pDcChargingInfo1);
|
|
|
+ //}
|
|
|
+ SetLedColor();
|
|
|
+ gettimeofday(&_led_priority_time, NULL);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
void RelayBoardTask(int uartFD)
|
|
|
{
|
|
|
pid_t pid = fork();
|
|
@@ -1143,6 +1665,9 @@ void RelayBoardTask(int uartFD)
|
|
|
ShmPsuData = (struct PsuData *)GetShmPsuData();
|
|
|
ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
|
|
|
ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
|
|
|
+ pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
|
|
|
+ ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
|
|
|
+ ShmLedModuleData = (struct LedModuleData *)GetShmLedModuleData();
|
|
|
|
|
|
Uart5Fd = uartFD;
|
|
|
|
|
@@ -1150,214 +1675,189 @@ void RelayBoardTask(int uartFD)
|
|
|
outputRelayInit(uartFD);
|
|
|
|
|
|
while (isContinue) {
|
|
|
+
|
|
|
+ if(IsRelayProcessNeedPause() == true)
|
|
|
+ {
|
|
|
+ sleep(1);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
// 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
|
|
|
if (ShmRelayModuleData->SelfTest_Comp == NO) {
|
|
|
GetFwAndHwVersion_Relay();
|
|
|
SetModelName_Relay(); //DS60-120 add
|
|
|
SetRtcData_Relay();
|
|
|
sleep(1);
|
|
|
-
|
|
|
- continue;
|
|
|
}
|
|
|
|
|
|
- // ==============優先權最高 10 ms ==============
|
|
|
- // 輸出電壓
|
|
|
- GetPersentOutputVol();
|
|
|
+#if !defined NO_FAN_BOARD && !defined DD360ComBox
|
|
|
+ fanBoardSelfTest();
|
|
|
+#endif //NO_FAN_BOARD
|
|
|
|
|
|
-#if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
|
|
|
- // 三相輸入電壓
|
|
|
- GetPresentInputVol();
|
|
|
-#endif //!defined DD360 && !defined DD360Audi
|
|
|
+#if !defined DD360ComBox
|
|
|
+ LEDBoardSelfTest();
|
|
|
+#endif //defined DD360ComBox
|
|
|
|
|
|
- // 讀取當前 AC relay 狀態
|
|
|
- regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
|
|
|
+ if (ShmRelayModuleData->SelfTest_Comp == YES)
|
|
|
+ {
|
|
|
+ // ==============優先權最高 10 ms ==============
|
|
|
+ // 輸出電壓
|
|
|
+ GetPersentOutputVol();
|
|
|
|
|
|
- GetRelayOutputStatus();
|
|
|
+ #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
|
|
|
+ // 三相輸入電壓
|
|
|
+ GetPresentInputVol();
|
|
|
+ #endif //!defined DD360 && !defined DD360Audi
|
|
|
|
|
|
- for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
|
|
|
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
|
|
|
+ // 讀取當前 AC relay 狀態
|
|
|
+ regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
|
|
|
|
|
|
- // Cable check (Set)
|
|
|
- CableCheckDetected(i);
|
|
|
+ GetRelayOutputStatus();
|
|
|
|
|
|
- // check k1 k2 relay 狀態
|
|
|
- CheckK1K2RelayOutput(i);
|
|
|
+ // Cable check (Get)
|
|
|
+ GetGfdAdc();
|
|
|
|
|
|
- // 依據當前各槍的狀態選擇 搭上/放開 Relay
|
|
|
- SetK1K2RelayStatus(i);
|
|
|
+ for (i = 0; i < pSysConfig->TotalConnectorCount; i++) {
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
|
|
|
|
|
|
-#if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
|
|
|
- if (pSysConfig->PhaseLossPolicy == YES) {
|
|
|
- CheckPhaseLossStatus(i);
|
|
|
- }
|
|
|
+ // Cable check (Set)
|
|
|
+ CableCheckDetected(i);
|
|
|
|
|
|
- CheckAcInputOvpStatus(i);
|
|
|
-#endif //!defined DD360 && !defined DD360Audi
|
|
|
+ // check k1 k2 relay 狀態
|
|
|
+ CheckK1K2RelayOutput(i);
|
|
|
|
|
|
- if (pDcChargingInfo->SystemStatus == S_IDLE ||
|
|
|
- pDcChargingInfo->SystemStatus == S_RESERVATION ||
|
|
|
- pDcChargingInfo->SystemStatus == S_MAINTAIN) {
|
|
|
- //pDcChargingInfo->RelayWeldingCheck = NO;
|
|
|
- //_isRelayWelding[i] = NO;
|
|
|
- _isOvpChkTimeFlag[i] = NO;
|
|
|
- //ResetDetAlarmStatus(i); //DS60-120 add
|
|
|
- }
|
|
|
+ // 依據當前各槍的狀態選擇 搭上/放開 Relay
|
|
|
+ SetK1K2RelayStatus(i);
|
|
|
|
|
|
- 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;
|
|
|
-
|
|
|
- // 限定只有在槍類別為 GBT 的時候才做 relay welding 的判斷
|
|
|
- //if (pDcChargingInfo->Type == _Type_GB) {
|
|
|
- // if (pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
|
|
|
- // pDcChargingInfo->RelayWeldingCheck == NO) {
|
|
|
- // CheckRelayWeldingStatus(i);
|
|
|
- // }
|
|
|
- //} else {
|
|
|
- //pDcChargingInfo->RelayWeldingCheck = YES;
|
|
|
- //}
|
|
|
-
|
|
|
- if (pDcChargingInfo->SystemStatus == S_CHARGING) {
|
|
|
- CheckOutputPowerOverCarReq(i);
|
|
|
- //CheckOutputVolNoneMatchFire(i);
|
|
|
+#if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
|
|
|
+ if (pSysConfig->PhaseLossPolicy == YES) {
|
|
|
+ CheckPhaseLossStatus(i);
|
|
|
}
|
|
|
- /*else {
|
|
|
- _isOutputNoneMatch[i] = NO;
|
|
|
- }*/
|
|
|
- } else {
|
|
|
- pDcChargingInfo->IsReadyToCharging = NO;
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- // Cable check (Get)
|
|
|
- GetGfdAdc();
|
|
|
-
|
|
|
- // 橋接 relay
|
|
|
- SetParalleRelayStatus();
|
|
|
+ CheckAcInputOvpStatus(i);
|
|
|
+#endif //!defined DD360 && !defined DD360Audi
|
|
|
|
|
|
- // 搭上 AC Contactor
|
|
|
- //if (isCharging) {
|
|
|
- // outputRelay.relay_event.bits.AC_Contactor = YES;
|
|
|
- //} else {
|
|
|
- // outputRelay.relay_event.bits.AC_Contactor = NO;
|
|
|
- //}
|
|
|
+ if (pDcChargingInfo->SystemStatus == S_IDLE ||
|
|
|
+ pDcChargingInfo->SystemStatus == S_RESERVATION ||
|
|
|
+ pDcChargingInfo->SystemStatus == S_MAINTAIN) {
|
|
|
+ //pDcChargingInfo->RelayWeldingCheck = NO;
|
|
|
+ //_isRelayWelding[i] = NO;
|
|
|
+ _isOvpChkTimeFlag[i] = NO;
|
|
|
+ //ResetDetAlarmStatus(i); //DS60-120 add
|
|
|
+ }
|
|
|
|
|
|
- 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 (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;
|
|
|
+
|
|
|
+ // 限定只有在槍類別為 GBT 的時候才做 relay welding 的判斷
|
|
|
+ //if (pDcChargingInfo->Type == _Type_GB) {
|
|
|
+ // if (pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
|
|
|
+ // pDcChargingInfo->RelayWeldingCheck == NO) {
|
|
|
+ // CheckRelayWeldingStatus(i);
|
|
|
+ // }
|
|
|
+ //} else {
|
|
|
+ //pDcChargingInfo->RelayWeldingCheck = YES;
|
|
|
+ //}
|
|
|
+
|
|
|
+ if (pDcChargingInfo->SystemStatus == S_CHARGING) {
|
|
|
+ CheckOutputPowerOverCarReq(i);
|
|
|
+ //CheckOutputVolNoneMatchFire(i);
|
|
|
+ }
|
|
|
+ /*else {
|
|
|
+ _isOutputNoneMatch[i] = NO;
|
|
|
+ }*/
|
|
|
+ } else {
|
|
|
+ pDcChargingInfo->IsReadyToCharging = 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;
|
|
|
- }
|
|
|
+ // 橋接 relay
|
|
|
+ SetParalleRelayStatus();
|
|
|
|
|
|
- // 搭上/鬆開 Relay
|
|
|
- if (IsNoneMatchRelayStatus()) {
|
|
|
- if (Config_Relay_Output(Uart5Fd, ADDR_RELAY, &outputRelay)) {
|
|
|
- //regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
|
|
|
-
|
|
|
- //regRelay.relay_event.bits.CCS_Precharge = outputRelay.relay_event.bits.CCS_Precharge;
|
|
|
- //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;
|
|
|
- //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;
|
|
|
-
|
|
|
- //MatchRelayStatus();
|
|
|
-
|
|
|
- //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 \n",
|
|
|
- // regRelay.relay_event.bits.AC_Contactor,
|
|
|
- // regRelay.relay_event.bits.Gun1_P,
|
|
|
- // regRelay.relay_event.bits.Gun1_N,
|
|
|
- // regRelay.relay_event.bits.Gun2_P,
|
|
|
- // regRelay.relay_event.bits.Gun2_N,
|
|
|
- // regRelay.relay_event.bits.CCS_Precharge,
|
|
|
- // regRelay.relay_event.bits.Gun1_Parallel_P,
|
|
|
- // regRelay.relay_event.bits.Gun1_Parallel_N);
|
|
|
+ // 搭上 AC Contactor
|
|
|
+ //if (isCharging) {
|
|
|
+ // outputRelay.relay_event.bits.AC_Contactor = YES;
|
|
|
+ //} else {
|
|
|
+ // outputRelay.relay_event.bits.AC_Contactor = NO;
|
|
|
+ //}
|
|
|
|
|
|
- }
|
|
|
- } /*else {
|
|
|
- log_info("======== Relay Status Start========\n");
|
|
|
- if (regRelay.relay_event.bits.AC_Contactor == YES) {
|
|
|
- log_info("AC Power : ON \n");
|
|
|
+ if (isCharging ||
|
|
|
+ (ShmPsuData->Work_Step >= _TEST_MODE &&
|
|
|
+ ShmPsuData->Work_Step <= _TEST_MODE)) {
|
|
|
+ isStopChargingCount = false;
|
|
|
+ outputRelay.relay_event.bits.AC_Contactor = YES;
|
|
|
} else {
|
|
|
- log_info("AC Power : OFF \n");
|
|
|
+ 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 (regRelay.relay_event.bits.Gun1_P == YES) {
|
|
|
- log_info("Conn1(+) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Conn1(+) : OFF \n");
|
|
|
+ if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == ABNORMAL) {
|
|
|
+ outputRelay.relay_event.bits.AC_Contactor = NO;
|
|
|
}
|
|
|
|
|
|
- if (regRelay.relay_event.bits.Gun1_N == YES) {
|
|
|
- log_info("Conn1(-) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Conn1(-) : OFF \n");
|
|
|
+ if (pAlarmCode->AlarmEvents.bits.PsuFailureAlarm == ABNORMAL) {
|
|
|
+ RunForceStopProcess();
|
|
|
+ outputRelay.relay_event.bits.AC_Contactor = NO;
|
|
|
}
|
|
|
|
|
|
- if (regRelay.relay_event.bits.Gun2_P == YES) {
|
|
|
- log_info("Conn2(+) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Conn2(+) : OFF \n");
|
|
|
+ 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 (regRelay.relay_event.bits.Gun2_N == YES) {
|
|
|
- log_info("Conn2(-) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Conn2(-) : OFF \n");
|
|
|
- }
|
|
|
+ // 搭上/鬆開 Relay
|
|
|
+ if (IsNoneMatchRelayStatus()) {
|
|
|
+ if (Config_Relay_Output(Uart5Fd, ADDR_RELAY, &outputRelay)) {
|
|
|
+ //regRelay.relay_event.bits.AC_Contactor = pSysInfo->AcContactorStatus;
|
|
|
+
|
|
|
+ //regRelay.relay_event.bits.CCS_Precharge = outputRelay.relay_event.bits.CCS_Precharge;
|
|
|
+ //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;
|
|
|
+ //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;
|
|
|
+
|
|
|
+ //MatchRelayStatus();
|
|
|
+
|
|
|
+ //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 \n",
|
|
|
+ // regRelay.relay_event.bits.AC_Contactor,
|
|
|
+ // regRelay.relay_event.bits.Gun1_P,
|
|
|
+ // regRelay.relay_event.bits.Gun1_N,
|
|
|
+ // regRelay.relay_event.bits.Gun2_P,
|
|
|
+ // regRelay.relay_event.bits.Gun2_N,
|
|
|
+ // regRelay.relay_event.bits.CCS_Precharge,
|
|
|
+ // regRelay.relay_event.bits.Gun1_Parallel_P,
|
|
|
+ // regRelay.relay_event.bits.Gun1_Parallel_N);
|
|
|
|
|
|
- if (regRelay.relay_event.bits.CCS_Precharge == YES) {
|
|
|
- log_info("Precharge : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Precharge : OFF \n");
|
|
|
}
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if (regRelay.relay_event.bits.Gun1_Parallel_P == YES) {
|
|
|
- log_info("Parallel(+) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Parallel(+) : OFF \n");
|
|
|
- }
|
|
|
+#if !defined NO_FAN_BOARD && !defined DD360ComBox
|
|
|
+ fanBoardPorcess();
|
|
|
+#endif //NO_FAN_BOARD
|
|
|
|
|
|
- if (regRelay.relay_event.bits.Gun1_Parallel_N == YES) {
|
|
|
- log_info("Parallel(-) : ON \n");
|
|
|
- } else {
|
|
|
- log_info("Parallel(-) : OFF \n");
|
|
|
- }
|
|
|
- log_info("======== Relay Status End========\n");
|
|
|
- }*/
|
|
|
+#if !defined DD360ComBox
|
|
|
+ LEDBoardProcess();
|
|
|
+#endif //defined DD360ComBox
|
|
|
+
|
|
|
+ usleep(10000);
|
|
|
}
|
|
|
- usleep(100000);
|
|
|
}
|
|
|
}
|