|
@@ -355,18 +355,28 @@ static void ClearAuthorizedFlag(void)
|
|
|
pSysInfo->AuthorizeFlag = NO;
|
|
|
}
|
|
|
|
|
|
-static void ClearDetectPluginFlag(void)
|
|
|
+void ClearDetectPluginFlag(int gunIndex)
|
|
|
{
|
|
|
- pSysInfo->WaitForPlugit = NO;
|
|
|
+ pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
|
|
|
+
|
|
|
+ if (pDcChargingInfo->RemoteStartFlag == YES) {
|
|
|
+ pDcChargingInfo->RemoteStartFlag = NO;
|
|
|
+ }
|
|
|
+ ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit = NO;
|
|
|
+
|
|
|
+
|
|
|
+ if (pSysInfo->OrderCharging != NO_DEFINE) {
|
|
|
+ pSysInfo->OrderCharging = NO_DEFINE;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-static bool isDetectPlugin(void)
|
|
|
+bool isDetectPlugin(int gunIndex)
|
|
|
{
|
|
|
- if (pSysInfo->WaitForPlugit == YES) {
|
|
|
- return YES;
|
|
|
+ if (ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit == YES) {
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
- return NO;
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
static void destroySelectGun(uint8_t curGun)
|
|
@@ -772,7 +782,7 @@ static int miscCommandHandle(uint8_t dataLen, uint8_t plugNum, uint8_t *data)
|
|
|
ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_ATHOR)) {
|
|
|
ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_RELEASE;
|
|
|
strcpy((char *)pSysConfig->UserId, "");
|
|
|
- pSysInfo->WaitForPlugit = NO;
|
|
|
+ ClearDetectPluginFlag(plugNum);
|
|
|
sleep(1); //Jerry add
|
|
|
pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
|
|
@@ -784,7 +794,7 @@ static int miscCommandHandle(uint8_t dataLen, uint8_t plugNum, uint8_t *data)
|
|
|
ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_ATHOR)) {
|
|
|
ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_RELEASE;
|
|
|
strcpy((char *)pSysConfig->UserId, "");
|
|
|
- pSysInfo->WaitForPlugit = NO;
|
|
|
+ ClearDetectPluginFlag(plugNum);
|
|
|
sleep(1); //Jerry add
|
|
|
pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
|
|
@@ -811,7 +821,8 @@ static int miscCommandHandle(uint8_t dataLen, uint8_t plugNum, uint8_t *data)
|
|
|
}
|
|
|
|
|
|
strcpy((char *)pSysConfig->UserId, "");
|
|
|
- pSysInfo->WaitForPlugit = NO;
|
|
|
+
|
|
|
+ ClearDetectPluginFlag(plugNum);
|
|
|
pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
|
|
|
pSysInfo->SystemTimeoutFlag = Timeout_None;
|
|
@@ -828,10 +839,10 @@ static int miscCommandHandle(uint8_t dataLen, uint8_t plugNum, uint8_t *data)
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- if (isDetectPlugin() == YES) {
|
|
|
- ClearDetectPluginFlag();
|
|
|
+ if (isDetectPlugin(plugNum) == YES) {
|
|
|
+ ClearDetectPluginFlag(plugNum);
|
|
|
strcpy((char *)pSysConfig->UserId, "");
|
|
|
- pSysInfo->WaitForPlugit = NO;
|
|
|
+ ShmDcCommonData->pGunInfo[plugNum].WaitForPlugit = NO;
|
|
|
pSysInfo->SystemPage = _LCM_VIEW;
|
|
|
GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
|
|
|
pSysInfo->SystemTimeoutFlag = Timeout_None;
|
|
@@ -1783,7 +1794,7 @@ static int writeWaitPlugItState(int fd, uint8_t id, uint8_t gunIndex)
|
|
|
int ret = PASS;
|
|
|
uint8_t data[2] = { ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit, 0 };
|
|
|
if (_isplugin[gunIndex] != ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit) {
|
|
|
- //log_info("Wait Gun%d for plug:%s", gunIndex, ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit == 0 ? "disable" : "enable");
|
|
|
+ log_info("Wait Gun%d for plug:%s", gunIndex, ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit == 0 ? "disable" : "enable");
|
|
|
_isplugin[gunIndex] = ShmDcCommonData->pGunInfo[gunIndex].WaitForPlugit;
|
|
|
}
|
|
|
//printf("WaitForPlugit = %d", pSysInfo->WaitForPlugit);
|