|
@@ -82,8 +82,8 @@ uint8_t bd0_2_status = 0;
|
|
|
uint8_t bd1_1_status = 0;
|
|
|
uint8_t bd1_2_status = 0;
|
|
|
|
|
|
-char *fwVersion = "V2.08.00.0000.00"; // Phihong version
|
|
|
-char* DebugVersion = "V2.08.00"; // Software debug version
|
|
|
+char *fwVersion = "V2.09.00.0000.00"; // Phihong version
|
|
|
+char* DebugVersion = "V2.09.00"; // Software debug version
|
|
|
//sqlite3 *localDb;
|
|
|
bool isDb_ready;
|
|
|
|
|
@@ -277,6 +277,7 @@ static void GetFirmwareVersion(void)
|
|
|
{
|
|
|
// Get CSU root file system version
|
|
|
sprintf((char *)pSysInfo->CsuRootFsFwRev, fwVersion);
|
|
|
+ sprintf((char*)ShmDcCommonData->DebugVersion, DebugVersion);
|
|
|
|
|
|
uint8_t count = 0, chademo = 0, ccs = 0, gb = 0;
|
|
|
for (uint8_t idx = 0; idx < 3; idx++) {
|
|
@@ -2607,19 +2608,6 @@ void CreateTimeoutFork(void)
|
|
|
StopSystemTimeoutDet();
|
|
|
}
|
|
|
break;
|
|
|
- case Timeout_Terminating:
|
|
|
- if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= TERMINATING_TIMEOUT) {
|
|
|
-
|
|
|
- pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
|
|
|
- log_info("Terminating timeout not get final cost");
|
|
|
- /*
|
|
|
- if (!ShmDcCommonData->finalcost_flag[pSysInfo->CurGunSelected] && pDcChargingInfo->ChargingFee < 0) {
|
|
|
- pDcChargingInfo->ChargingFee = pDcChargingInfo->PresentChargedEnergy * ShmDcCommonData->ChargingRate;
|
|
|
- }
|
|
|
- */
|
|
|
- setChargerMode(pSysInfo->CurGunSelected, S_COMPLETE);
|
|
|
- }
|
|
|
- break;
|
|
|
case Timeout_LinkError:
|
|
|
if (GetClockTimeoutValue(pSysInfo->SystemTimeoutTimer) / uSEC_VAL >= LINKERROR_TIMEOUT) {
|
|
|
StopSystemTimeoutDet();
|
|
@@ -2695,7 +2683,24 @@ void CreateTimeoutFork(void)
|
|
|
if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= PLUGOUT_TIMEOUT) {
|
|
|
StopGunInfoTimeoutDet(gunIndex);
|
|
|
destroySelGun(gunIndex); //jerry add
|
|
|
- pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ setChargerMode(gunIndex, S_IDLE);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case Timeout_GunAuthorizePage:
|
|
|
+ if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= GUN_AUTHORIZE_PAGE) {
|
|
|
+ StopGunInfoTimeoutDet(gunIndex);
|
|
|
+ destroySelGun(gunIndex); //jerry add
|
|
|
+ pDcChargingInfo->SystemStatus = S_IDLE;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case Timeout_Terminating:
|
|
|
+ if (GetTimeoutValue(pDcChargingInfo->TimeoutTimer) / uSEC_VAL >= TERMINATING_TIMEOUT) {
|
|
|
+ StopGunInfoTimeoutDet(gunIndex);
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
|
|
|
+
|
|
|
+ ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag = TRUE;
|
|
|
+
|
|
|
+ setChargerMode(gunIndex, S_COMPLETE);
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
@@ -4231,6 +4236,7 @@ CheckStatus:
|
|
|
if (isModeChange(gunIndex)) {
|
|
|
log_info("============================= S_AUTHORIZING(%x) ============================= ", gunIndex);
|
|
|
pSysInfo->SystemPage = _LCM_START_SCAN;
|
|
|
+ StartGunInfoTimeoutDet(gunIndex, Timeout_GunAuthorizePage);
|
|
|
}
|
|
|
// 讀卡邏輯
|
|
|
ScannerCardProcess();
|
|
@@ -4248,6 +4254,7 @@ CheckStatus:
|
|
|
ChangeGunSelectByIndex(gunIndex);
|
|
|
//AddPlugInTimes(gunIndex);
|
|
|
setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
|
|
|
+ StopGunInfoTimeoutDet(gunIndex);
|
|
|
strcpy((char *)pDcChargingInfo->StartUserId, "");
|
|
|
ClearDetectPluginFlag();
|
|
|
continue;
|
|
@@ -4271,6 +4278,7 @@ CheckStatus:
|
|
|
strcpy((char *)pSysConfig->UserId, "");
|
|
|
// 當前操作的槍號,進入 Preparing
|
|
|
setChargerMode(gunIndex, MODE_REASSIGN_CHECK);
|
|
|
+ StopGunInfoTimeoutDet(gunIndex);
|
|
|
ClearDetectPluginFlag();
|
|
|
continue;
|
|
|
}
|
|
@@ -4506,21 +4514,22 @@ CheckStatus:
|
|
|
if (ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
if (pSysInfo->CurGunSelected == gunIndex)
|
|
|
pSysInfo->SystemPage = _LCM_SUMMARY;
|
|
|
- if (pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
- setChargerMode(gunIndex, MODE_IDLE);
|
|
|
- }
|
|
|
StartGunInfoTimeoutDet(gunIndex, Timeout_PlugOut);
|
|
|
} else {
|
|
|
setChargerMode(gunIndex, MODE_IDLE);
|
|
|
}
|
|
|
} else {
|
|
|
- if (ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
- if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
- pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
- }
|
|
|
- } else {
|
|
|
- if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _LCM_LINK_ERROR) {
|
|
|
- pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ if (pSysInfo->CurGunSelected == gunIndex) {
|
|
|
+ if (ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
+ if (!ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
+ pSysInfo->SystemPage = _LCM_STOPPING;
|
|
|
+ } else if (pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
+ pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _LCM_LINK_ERROR) {
|
|
|
+ pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -4536,42 +4545,23 @@ CheckStatus:
|
|
|
}
|
|
|
StopGunInfoTimeoutDet(gunIndex);
|
|
|
|
|
|
- pSysInfo->CurGunSelected = gunIndex;
|
|
|
- StartSystemTimeoutDet(Timeout_Terminating);
|
|
|
+ //pSysInfo->CurGunSelected = gunIndex;
|
|
|
+ StartGunInfoTimeoutDet(gunIndex, Timeout_Terminating);
|
|
|
+
|
|
|
if (ShmDcCommonData->pGunInfo[gunIndex].PowerConsumption != 0)
|
|
|
DB_Update_PowerConsumption(gunIndex, ShmDcCommonData->pGunInfo[gunIndex].PowerConsumption);
|
|
|
}
|
|
|
- // Show EV Board Status
|
|
|
- if ((time((time_t*)NULL) - ShowEVStatusTimer[gunIndex]) > 3) {
|
|
|
- ShowEVStatusTimer[gunIndex] = time((time_t*)NULL);
|
|
|
- if (pDcChargingInfo->Type == _Type_Chademo) {
|
|
|
- EVStatus[gunIndex] = isPrechargeStatus_chademo(gunIndex);
|
|
|
- } else if (pDcChargingInfo->Type == _Type_GB) {
|
|
|
- EVStatus[gunIndex] = isPrechargeStatus_gb(gunIndex);
|
|
|
- } else if (pDcChargingInfo->Type == _Type_CCS_2) {
|
|
|
- EVStatus[gunIndex] = isPrechargeStatus_ccs(gunIndex);
|
|
|
- }
|
|
|
- log_info("EV Board Status:%d, Final Cost Flag:%d", EVStatus[gunIndex], ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag);
|
|
|
- }
|
|
|
+
|
|
|
// For Precharging timeout
|
|
|
if (pDcChargingInfo->Type == _Type_Chademo) {
|
|
|
if (isEvStopCharging_chademo(gunIndex) == YES ||
|
|
|
isPrechargeStatus_chademo(gunIndex) <= 0 ) {
|
|
|
- if (!ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- } else if (ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- }
|
|
|
+ setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
}
|
|
|
} else if (pDcChargingInfo->Type == _Type_GB) {
|
|
|
if (isEvStopCharging_gb(gunIndex) == YES ||
|
|
|
isPrechargeStatus_gb(gunIndex) <= 0){
|
|
|
-
|
|
|
- if (!ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- } else if (ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- }
|
|
|
+ setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
}
|
|
|
} else if (pDcChargingInfo->Type == _Type_CCS_2) {
|
|
|
if (isEvStopCharging_ccs(gunIndex) == YES &&
|
|
@@ -4579,16 +4569,11 @@ CheckStatus:
|
|
|
isPrechargeStatus_ccs(gunIndex) == 0 ||
|
|
|
isPrechargeStatus_ccs(gunIndex) == 13 ||
|
|
|
isPrechargeStatus_ccs(gunIndex) == 14) ) {
|
|
|
-
|
|
|
- if (!ShmDcCommonData->isIntoCharge[gunIndex]) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- } else if (ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
- setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
- }
|
|
|
+ setChargerMode(gunIndex, MODE_COMPLETE);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (pSysInfo->CurGunSelected == gunIndex) {
|
|
|
+ if (pSysInfo->CurGunSelected == gunIndex && !ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
pSysInfo->SystemPage = _LCM_STOPPING;
|
|
|
}
|
|
|
break;
|
|
@@ -4611,16 +4596,19 @@ CheckStatus:
|
|
|
}
|
|
|
|
|
|
if (!pDcChargingInfo->ConnectorPlugIn) {
|
|
|
- if (pSysInfo->CurGunSelected == gunIndex)
|
|
|
+ if (pSysInfo->CurGunSelected == gunIndex) {
|
|
|
pSysInfo->SystemPage = _LCM_SUMMARY;
|
|
|
- if (pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
- setChargerMode(gunIndex, MODE_IDLE);
|
|
|
}
|
|
|
StartGunInfoTimeoutDet(gunIndex, Timeout_PlugOut);
|
|
|
} else {
|
|
|
- if (pSysInfo->CurGunSelected == gunIndex && pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
- pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ if (pSysInfo->CurGunSelected == gunIndex) {
|
|
|
+ if (!ShmDcCommonData->pGunInfo[gunIndex].finalcost_flag) {
|
|
|
+ pSysInfo->SystemPage = _LCM_STOPPING;
|
|
|
+ } else if(pSysInfo->SystemPage != _LCM_SUMMARY) {
|
|
|
+ pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
break;
|
|
|
|