|
@@ -383,16 +383,100 @@ void ChangeCurPage()
|
|
|
pSysInfo->PageIndex = __VIEW_RIGHT_CHARGE_;
|
|
|
} else if(pDcChargingInfo_0->SystemStatus == S_CHARGING && pDcChargingInfo_1->SystemStatus == S_CHARGING) {
|
|
|
pSysInfo->PageIndex = __VIEW_ALL_CHARGE_;
|
|
|
- } else if (pDcChargingInfo_0->SystemStatus == S_ALARM && pDcChargingInfo_1->SystemStatus == S_CHARGING) {
|
|
|
- pSysInfo->PageIndex = __VIEW_L_FAIL_R_CHARGE;
|
|
|
- } else if (pDcChargingInfo_0->SystemStatus == S_CHARGING && pDcChargingInfo_1->SystemStatus == S_ALARM) {
|
|
|
- pSysInfo->PageIndex = __VIEW_L_CHARGE_R_FAIL;
|
|
|
- } else if (pDcChargingInfo_0->SystemStatus == S_ALARM && pDcChargingInfo_1->SystemStatus == S_IDLE) {
|
|
|
- pSysInfo->PageIndex = __VIEW_L_FAIL_R_IDLE;
|
|
|
- } else if (pDcChargingInfo_0->SystemStatus == S_IDLE && pDcChargingInfo_1->SystemStatus == S_ALARM) {
|
|
|
- pSysInfo->PageIndex = __VIEW_L_IDLE_R_FAIL;
|
|
|
- } else if (pDcChargingInfo_0->SystemStatus == S_ALARM && pDcChargingInfo_1->SystemStatus == S_ALARM) {
|
|
|
- pSysInfo->PageIndex = __VIEW_ALL_FAIL;
|
|
|
+
|
|
|
+ } else if ((pDcChargingInfo_0->SystemStatus == S_ALARM || pDcChargingInfo_0->SystemStatus == S_FAULT )&&
|
|
|
+ pDcChargingInfo_1->SystemStatus == S_CHARGING) {
|
|
|
+ if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_LINK_R_CHARGE;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_FAIL_R_CHARGE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_CHARGING &&
|
|
|
+ (pDcChargingInfo_1->SystemStatus == S_ALARM || pDcChargingInfo_1->SystemStatus == S_FAULT)) {
|
|
|
+ if (pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_CHARGE_R_LINK;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_CHARGE_R_FAIL;
|
|
|
+ } else if ((pDcChargingInfo_0->SystemStatus == S_ALARM || pDcChargingInfo_0->SystemStatus == S_FAULT) &&
|
|
|
+ pDcChargingInfo_1->SystemStatus == S_IDLE) {
|
|
|
+ if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_LINK_R_IDLE;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_FAIL_R_IDLE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_IDLE &&
|
|
|
+ (pDcChargingInfo_1->SystemStatus == S_ALARM || pDcChargingInfo_1->SystemStatus == S_FAULT)) {
|
|
|
+ if (pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_IDLE_R_LINK;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_IDLE_R_FAIL;
|
|
|
+ } else if ((pDcChargingInfo_0->SystemStatus == S_ALARM || pDcChargingInfo_0->SystemStatus == S_FAULT) &&
|
|
|
+ (pDcChargingInfo_1->SystemStatus == S_ALARM || pDcChargingInfo_1->SystemStatus == S_FAULT)) {
|
|
|
+ if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM] &&
|
|
|
+ pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM]) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_OUT;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM]) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_LINK_R_FAIL;
|
|
|
+ } else if (pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM]) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_FAIL_R_LINK;
|
|
|
+ } else
|
|
|
+ pSysInfo->PageIndex = __VIEW_ALL_FAIL;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_IDLE && pDcChargingInfo_1->SystemStatus == S_MAINTAIN) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_IDLE_R_MAINTAIN;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_MAINTAIN && pDcChargingInfo_1->SystemStatus == S_IDLE) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_MAINTAIN_R_IDLE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_CHARGING && pDcChargingInfo_1->SystemStatus == S_MAINTAIN) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_CHARGE_R_MAINTAIN;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_MAINTAIN && pDcChargingInfo_1->SystemStatus == S_CHARGING) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_MAINTAIN_R_CHARGE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_MAINTAIN && pDcChargingInfo_1->SystemStatus == S_MAINTAIN) {
|
|
|
+ pSysInfo->PageIndex = __MAINTAIN_PAGE_;
|
|
|
+
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_IDLE && pDcChargingInfo_1->SystemStatus == S_COMPLETE &&
|
|
|
+ pDcChargingInfo_1->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_IDLE_R_OUT;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_COMPLETE && pDcChargingInfo_1->SystemStatus == S_IDLE &&
|
|
|
+ pDcChargingInfo_0->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_IDLE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_CHARGING && pDcChargingInfo_1->SystemStatus == S_COMPLETE &&
|
|
|
+ pDcChargingInfo_1->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_CHARGE_R_OUT;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_COMPLETE && pDcChargingInfo_1->SystemStatus == S_CHARGING &&
|
|
|
+ pDcChargingInfo_0->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_CHARGE;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_MAINTAIN && pDcChargingInfo_1->SystemStatus == S_COMPLETE &&
|
|
|
+ pDcChargingInfo_1->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_MAINTAIN_R_OUT;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_COMPLETE && pDcChargingInfo_1->SystemStatus == S_MAINTAIN &&
|
|
|
+ pDcChargingInfo_0->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_MAINTAIN;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_COMPLETE && pDcChargingInfo_1->SystemStatus == S_COMPLETE &&
|
|
|
+ pDcChargingInfo_0->ConnectorPlugIn && pDcChargingInfo_1->ConnectorPlugIn) {
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_OUT;
|
|
|
+ } else if ((pDcChargingInfo_0->SystemStatus == S_ALARM || pDcChargingInfo_0->SystemStatus == S_FAULT) &&
|
|
|
+ pDcChargingInfo_1->SystemStatus == S_COMPLETE && pDcChargingInfo_1->ConnectorPlugIn) {
|
|
|
+ if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_LINK_R_OUT;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_FAIL_R_OUT;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_COMPLETE && pDcChargingInfo_0->ConnectorPlugIn &&
|
|
|
+ (pDcChargingInfo_1->SystemStatus == S_ALARM || pDcChargingInfo_1->SystemStatus == S_FAULT)) {
|
|
|
+ if (pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_LINK;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_OUT_R_FAIL;
|
|
|
+ } else if (pDcChargingInfo_0->SystemStatus == S_MAINTAIN &&
|
|
|
+ (pDcChargingInfo_1->SystemStatus == S_ALARM || pDcChargingInfo_1->SystemStatus == S_FAULT)) {
|
|
|
+ if (pDcChargingInfo_1->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_MAINTAIN_R_LINK;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_MAINTAIN_R_FAIL;
|
|
|
+ } else if ((pDcChargingInfo_0->SystemStatus == S_ALARM || pDcChargingInfo_0->SystemStatus == S_FAULT ) &&
|
|
|
+ pDcChargingInfo_1->SystemStatus == S_MAINTAIN) {
|
|
|
+ if (pDcChargingInfo_0->SystemStatus == S_ALARM && !ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM])
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_LINK_R_MAINTAIN;
|
|
|
+ else
|
|
|
+ pSysInfo->PageIndex = __VIEW_L_FAIL_R_MAINTAIN;
|
|
|
+ } else {
|
|
|
+ pSysInfo->PageIndex = __VIEW_ALL_IDLE_;
|
|
|
}
|
|
|
break;
|
|
|
case _LCM_START_SCAN:
|
|
@@ -497,7 +581,7 @@ void ChangeCurPage()
|
|
|
break;
|
|
|
}
|
|
|
if (_currentPage != pSysInfo->PageIndex) {
|
|
|
- log_info("Change Page from %d to %d", _currentPage, pSysInfo->PageIndex);
|
|
|
+ log_info("Gun%d Change Page from %d to %d",pSysInfo->CurGunSelected, _currentPage, pSysInfo->PageIndex);
|
|
|
}
|
|
|
_currentPage = pSysInfo->PageIndex;
|
|
|
ChangeToOtherPage(pSysInfo->PageIndex);
|
|
@@ -660,9 +744,9 @@ void ShowViewLeftGunInfo()
|
|
|
}
|
|
|
} else if (pDcChargingInfo->SystemStatus == S_CHARGING ) {
|
|
|
ShowViewChargingSoc(LEFT_GUN_NUM,pDcChargingInfo->EvBatterySoc);
|
|
|
- if (strlen(ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeStartTime) > 1) {
|
|
|
- int duration = GetChargingDuration(ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeStartTime,
|
|
|
- ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeDuration);
|
|
|
+ if (strlen(ShmDcCommonData->pGunInfo[LEFT_GUN_NUM].ChargeStartTime) > 1) {
|
|
|
+ int duration = GetChargingDuration(ShmDcCommonData->pGunInfo[LEFT_GUN_NUM].ChargeStartTime,
|
|
|
+ ShmDcCommonData->pGunInfo[LEFT_GUN_NUM].ChargeDuration);
|
|
|
ShowViewChargingTime(LEFT_GUN_NUM, duration);
|
|
|
} else {
|
|
|
ShowViewChargingTime(LEFT_GUN_NUM, 0);
|
|
@@ -721,9 +805,9 @@ void ShowViewRightGunInfo()
|
|
|
DisplayValueToLcm(_RightGun_location, (uint8_t *)value, sizeof(value));
|
|
|
} else if (pDcChargingInfo->SystemStatus == S_CHARGING ) {
|
|
|
ShowViewChargingSoc(RIGHT_GUN_NUM,pDcChargingInfo->EvBatterySoc);
|
|
|
- if (strlen(ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeStartTime) > 1) {
|
|
|
- int duration = GetChargingDuration(ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeStartTime,
|
|
|
- ShmDcCommonData->pGunInfo[pSysInfo->CurGunSelected].ChargeDuration);
|
|
|
+ if (strlen(ShmDcCommonData->pGunInfo[RIGHT_GUN_NUM].ChargeStartTime) > 1) {
|
|
|
+ int duration = GetChargingDuration(ShmDcCommonData->pGunInfo[RIGHT_GUN_NUM].ChargeStartTime,
|
|
|
+ ShmDcCommonData->pGunInfo[RIGHT_GUN_NUM].ChargeDuration);
|
|
|
ShowViewChargingTime(RIGHT_GUN_NUM, duration);
|
|
|
} else {
|
|
|
ShowViewChargingTime(RIGHT_GUN_NUM, 0);
|