|
@@ -52,6 +52,8 @@ static float maxChargingPow = 0; // 限制最大充電能量
|
|
|
static float LogInfo[2][10]; //DS60-120 add
|
|
|
static int CanFd = -1;
|
|
|
|
|
|
+bool psuOutputReady[2] = {0, 0};
|
|
|
+
|
|
|
//------------------------------------------------------------------------------
|
|
|
extern void CANReceiver(int fd);
|
|
|
extern void ClearAbnormalStatus_Chademo(uint8_t gun_index);
|
|
@@ -465,9 +467,9 @@ static void SetPresentChargingOutputFromPcPsu(uint8_t gunCount)
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- vol1 = (((float)pPcPsuOutput0->Voltage));
|
|
|
+ vol1 = pPcPsuOutput0->Voltage == 0 ? chargingData0->FireChargingVoltage : (((float)pPcPsuOutput0->Voltage));
|
|
|
cur1 = (chargingData0->PresentChargingCurrent * 10);//(((float)pPcPsuOutput0->Current) * 0.1);
|
|
|
- vol2 = (((float)pPcPsuOutput1->Voltage));
|
|
|
+ vol2 = pPcPsuOutput1->Voltage == 0 ? chargingData1->FireChargingVoltage : (((float)pPcPsuOutput1->Voltage));
|
|
|
cur2 = (chargingData1->PresentChargingCurrent * 10);//(((float)pPcPsuOutput1->Current) * 0.1);
|
|
|
|
|
|
if (
|
|
@@ -499,20 +501,35 @@ static void SetPresentChargingOutputPower(void)
|
|
|
{
|
|
|
float vol1 = 0, cur1 = 0;
|
|
|
float vol2 = 0, cur2 = 0;
|
|
|
+ PcPsuOutput *pPcPsuOutput1 = NULL;
|
|
|
+ PcPsuOutput *pPcPsuOutput2 = NULL;
|
|
|
struct ChargingInfoData *chargingData_1 = NULL;
|
|
|
struct ChargingInfoData *chargingData_2 = NULL;
|
|
|
+ bool isPsuOutput1 = false, isPsuOutput2 = false;
|
|
|
|
|
|
if (pSysConfig->TotalConnectorCount == 1) {
|
|
|
+ pPcPsuOutput1 = (PcPsuOutput *)&ShmDcCommonData->PcPsuOutput[0];
|
|
|
+ pPcPsuOutput2 = (PcPsuOutput *)&ShmDcCommonData->PcPsuOutput[0];
|
|
|
chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
} else if (pSysConfig->TotalConnectorCount == 2) {
|
|
|
+ pPcPsuOutput1 = (PcPsuOutput *)&ShmDcCommonData->PcPsuOutput[0];
|
|
|
+ pPcPsuOutput2 = (PcPsuOutput *)&ShmDcCommonData->PcPsuOutput[1];
|
|
|
chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
|
|
|
chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
|
|
|
}
|
|
|
|
|
|
- vol1 = chargingData_1->FireChargingVoltage;
|
|
|
+ psuOutputReady[0] = chargingData_1->SystemStatus != S_CHARGING ? false : psuOutputReady[0];
|
|
|
+ psuOutputReady[1] = chargingData_2->SystemStatus != S_CHARGING ? false : psuOutputReady[1];
|
|
|
+
|
|
|
+ isPsuOutput1 = (pPcPsuOutput1->Voltage != 0 && psuOutputReady[0] == true);
|
|
|
+ isPsuOutput2 = (pPcPsuOutput2->Voltage != 0 && psuOutputReady[1] == true);
|
|
|
+
|
|
|
+ //vol1 = chargingData_1->FireChargingVoltage;
|
|
|
+ vol1 = isPsuOutput1 == false ? chargingData_1->FireChargingVoltage : (((float)pPcPsuOutput1->Voltage));
|
|
|
cur1 = (chargingData_1->PresentChargingCurrent * 10);
|
|
|
- vol2 = chargingData_2->FireChargingVoltage;
|
|
|
+ //vol2 = chargingData_2->FireChargingVoltage;
|
|
|
+ vol2 = isPsuOutput2 == false ? chargingData_2->FireChargingVoltage : (((float)pPcPsuOutput2->Voltage));
|
|
|
cur2 = (chargingData_2->PresentChargingCurrent * 10);
|
|
|
|
|
|
//DS60-120 add
|
|
@@ -525,9 +542,11 @@ static void SetPresentChargingOutputPower(void)
|
|
|
(LogInfo[1][EV_LOG_NOW_OUTPUT_CUR] >= cur2 + CHK_CUR_RANGE) ||
|
|
|
(LogInfo[1][EV_LOG_NOW_OUTPUT_CUR] <= cur2 - CHK_CUR_RANGE)
|
|
|
) {
|
|
|
- log_info("G1 -> Output Vol = %.1f, Output Cur = %.1f -- G2 -> Output Vol = %.1f, Output Cur = %.1f\r\n",
|
|
|
+ log_info("G1 -> Output Vol(%s) = %.1f, Output Cur = %.1f -- G2 -> Output Vol(%s) = %.1f, Output Cur = %.1f\r\n",
|
|
|
+ isPsuOutput1 == true ? "P" : "R",
|
|
|
vol1 / 10,
|
|
|
cur1 / 10,
|
|
|
+ isPsuOutput2 == true ? "P" : "R",
|
|
|
vol2 / 10,
|
|
|
cur2 / 10);
|
|
|
|
|
@@ -998,12 +1017,11 @@ int main(int argc, char *argv[])
|
|
|
|
|
|
// 設定當前輸出
|
|
|
ftime(&nowTime);
|
|
|
- if (DiffTimeb(waitChargingTime, nowTime) < 3000 ||
|
|
|
- DiffTimeb(waitChargingTime, nowTime) < 0) {
|
|
|
- SetPresentChargingOutputPower();
|
|
|
- } else {
|
|
|
- SetPresentChargingOutputFromPcPsu(pSysConfig->TotalConnectorCount);
|
|
|
+ if (!(DiffTimeb(waitChargingTime, nowTime) < 5000 ||
|
|
|
+ DiffTimeb(waitChargingTime, nowTime) < 0)) {
|
|
|
+ psuOutputReady[gunIndex] = true;
|
|
|
}
|
|
|
+ SetPresentChargingOutputPower();
|
|
|
|
|
|
// for test end
|
|
|
if (priorityLow % 5 == 0) {
|