|
@@ -61,6 +61,7 @@ static unsigned int LedIntensity = 0;
|
|
|
static int TimeZoneOffset = 0;
|
|
|
int RxLen;
|
|
|
char Rxdata[1024];
|
|
|
+uint8_t _isplugin;
|
|
|
//------------------------------------------------------------------------------
|
|
|
static void removeFaultCodeToBuf(uint8_t *Code);
|
|
|
static void addFaultCodeToBuf(uint8_t *Code);
|
|
@@ -199,7 +200,7 @@ static void setTcpStatus(uint8_t setValue)
|
|
|
//------------------------------------------------------------------------------
|
|
|
//--- TCP socket function ---
|
|
|
//------------------------------------------------------------------------------
|
|
|
-static int sendTcpSocket(int fd, uint8_t* data, uint16_t dataLen)
|
|
|
+static int sendTcpSocket(int fd, uint8_t *data, uint16_t dataLen)
|
|
|
{
|
|
|
int size = -1;
|
|
|
int i;
|
|
@@ -220,7 +221,7 @@ static int sendTcpSocket(int fd, uint8_t* data, uint16_t dataLen)
|
|
|
printf("%s", _info);
|
|
|
}
|
|
|
|
|
|
- size = send(fd, data, dataLen, 0);
|
|
|
+ size = send(fd, data, dataLen , 0);
|
|
|
if ((size < 0) || (errno == EAGAIN)) {
|
|
|
if (size < 0) {
|
|
|
log_error("Send Socket Size = %d, EAGAIN error %d:%s", size, errno, strerror(errno));
|
|
@@ -230,11 +231,11 @@ static int sendTcpSocket(int fd, uint8_t* data, uint16_t dataLen)
|
|
|
return size;
|
|
|
}
|
|
|
|
|
|
-static int recvTcpSocket(int fd, uint8_t* data, uint16_t dataLen, uint8_t ishead)
|
|
|
+static int recvTcpSocket(int fd, uint8_t *data, uint16_t dataLen,uint8_t ishead)
|
|
|
{
|
|
|
int size = -1;
|
|
|
int i;
|
|
|
- uint8_t* pdata = (uint8_t*)data;
|
|
|
+ uint8_t *pdata = (uint8_t *)data;
|
|
|
|
|
|
size = recv(fd, pdata, dataLen, MSG_WAITALL);
|
|
|
if ((errno == EAGAIN) || (size < 0)) {
|
|
@@ -255,7 +256,7 @@ static int recvTcpSocket(int fd, uint8_t* data, uint16_t dataLen, uint8_t ishead
|
|
|
if (!ishead) {
|
|
|
RxLen += sprintf(&Rxdata[RxLen], "\n");
|
|
|
printf("%s", Rxdata);
|
|
|
- strcpy(Rxdata, "");
|
|
|
+ strcpy(Rxdata,"");
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -525,7 +526,7 @@ static int qrCodeUrlInfoHandle(uint8_t *data)
|
|
|
string2Date((char*)data, (uint8_t*)_setTime);
|
|
|
//printf("SystemId = %s", pSysConfig->SystemId);
|
|
|
if (!timecmp(localTime, _setTime)) {
|
|
|
- log_info("Set Timer:%s", _setTime);
|
|
|
+ log_info("Set Timer:%s Time Zone:%d", _setTime,ShmDcCommonData->TZOffset);
|
|
|
sprintf((char*)cmdBuf, "date -u -s \"%s\" >> /dev/null &", _setTime);
|
|
|
system((char*)cmdBuf);
|
|
|
system("hwclock -w -u");
|
|
@@ -955,10 +956,6 @@ void AddDispenserReq(uint8_t* buff, MiscCommand* req)
|
|
|
buff[5] = req->Value[3];
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
static int chargingcapabilityHandle(uint8_t *data, uint8_t plugNum)
|
|
|
{
|
|
|
uint8_t addr = 0;
|
|
@@ -1011,19 +1008,17 @@ static int chargingcapabilityHandle(uint8_t *data, uint8_t plugNum)
|
|
|
ShmSelectGunInfo->PricesInfo[plugNum].TransactionId = ntohl(pAccountInfo->Transaction);
|
|
|
ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost = transPricesUnit(ntohl(pAccountInfo->EnergyCost));
|
|
|
ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee = transPricesUnit(ntohl(pAccountInfo->ParkingFee));
|
|
|
+ pAccountInfo->RemainAmount = ntohl(pAccountInfo->RemainAmount);
|
|
|
+ memcpy((char*)&ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount, (char*)&pAccountInfo->RemainAmount, sizeof(uint32_t));
|
|
|
|
|
|
if ((pricesInfo[plugNum].UserPrices != ShmSelectGunInfo->PricesInfo[plugNum].UserPrices) ||
|
|
|
(pricesInfo[plugNum].Balance != ShmSelectGunInfo->PricesInfo[plugNum].Balance) ||
|
|
|
(pricesInfo[plugNum].Discount != ShmSelectGunInfo->PricesInfo[plugNum].Discount) ||
|
|
|
- (pricesInfo[plugNum].TransactionId != ShmSelectGunInfo->PricesInfo[plugNum].TransactionId) ||
|
|
|
- (pricesInfo[plugNum].EnergyCost != ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost) ||
|
|
|
- (pricesInfo[plugNum].ParkingFee != ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee)) {
|
|
|
+ (pricesInfo[plugNum].TransactionId != ShmSelectGunInfo->PricesInfo[plugNum].TransactionId)) {
|
|
|
pricesInfo[plugNum].UserPrices = ShmSelectGunInfo->PricesInfo[plugNum].UserPrices;
|
|
|
pricesInfo[plugNum].Balance = ShmSelectGunInfo->PricesInfo[plugNum].Balance;
|
|
|
pricesInfo[plugNum].Discount = ShmSelectGunInfo->PricesInfo[plugNum].Discount;
|
|
|
pricesInfo[plugNum].TransactionId = ShmSelectGunInfo->PricesInfo[plugNum].TransactionId;
|
|
|
- pricesInfo[plugNum].ParkingFee = ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee;
|
|
|
- pricesInfo[plugNum].EnergyCost = ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost;
|
|
|
if (ShmSelectGunInfo->PricesInfo[plugNum].TransactionId != 0) {
|
|
|
|
|
|
//ShmDcCommonData->TransactionInfo[plugNum].TransactionId = ShmSelectGunInfo->PricesInfo[plugNum].TransactionId;
|
|
@@ -1037,12 +1032,22 @@ static int chargingcapabilityHandle(uint8_t *data, uint8_t plugNum)
|
|
|
ShmSelectGunInfo->PricesInfo[plugNum].Balance,
|
|
|
(uint8_t*)GetCurrency(pSysConfig->BillingData.Currency)
|
|
|
);
|
|
|
- log_info("Total Cost:%.2f", pDcChargingInfo->ChargingFee);
|
|
|
- log_info("Parking Fee:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee);
|
|
|
- log_info("Energy Cost:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost);
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
+ if ((pricesInfo[plugNum].EnergyCost != ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost) ||
|
|
|
+ (pricesInfo[plugNum].ParkingFee != ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee) ||
|
|
|
+ (pricesInfo[plugNum].RemainAmount != ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount)) {
|
|
|
|
|
|
+ pricesInfo[plugNum].ParkingFee = ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee;
|
|
|
+ pricesInfo[plugNum].EnergyCost = ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost;
|
|
|
+ pricesInfo[plugNum].RemainAmount = ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount;
|
|
|
+
|
|
|
+ log_info("Total Cost:%.2f", pDcChargingInfo->ChargingFee);
|
|
|
+ log_info("Parking Fee:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].ParkingFee);
|
|
|
+ log_info("Energy Cost:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].EnergyCost);
|
|
|
+ log_info("Remain Amount:%.2f", ShmSelectGunInfo->PricesInfo[plugNum].RemainAmount);
|
|
|
+ }
|
|
|
return PASS;
|
|
|
}
|
|
|
|
|
@@ -1231,26 +1236,27 @@ static int powerCabinetStatusProcess(uint8_t dataLen, uint8_t *data)
|
|
|
void GetCabientDcmRevHandle(uint8_t *data)
|
|
|
{
|
|
|
PCDCMVer *pVersion = (PCDCMVer *)&data[0];
|
|
|
- strcpy(ShmDcCommonData->CabinetModelName , pVersion->CabinetModelName);
|
|
|
- strcpy(ShmDcCommonData->CabinetBoolLoaderVersion, pVersion->CabinetBoolLoaderVersion);
|
|
|
- strcpy(ShmDcCommonData->CabinetKernelVersion , pVersion->CabinetKernelVersion);
|
|
|
- strcpy(ShmDcCommonData->CabinetRFSystemVersion , pVersion->CabinetRFSystemVersion);
|
|
|
- strcpy(ShmDcCommonData->CabinetPrimaryVersion , pVersion->CabinetPrimaryVersion);
|
|
|
- strcpy(ShmDcCommonData->CabinetIPAddr , pVersion->CabinetIPAddr);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetModelName , (char *)pVersion->CabinetModelName);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetBoolLoaderVersion, (char*)pVersion->CabinetBoolLoaderVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetKernelVersion , (char*)pVersion->CabinetKernelVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetRFSystemVersion , (char*)pVersion->CabinetRFSystemVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetPrimaryVersion , (char*)pVersion->CabinetPrimaryVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetIPAddr , (char*)pVersion->CabinetIPAddr);
|
|
|
}
|
|
|
void GetCabientOtherRevHandle(uint8_t *data)
|
|
|
{
|
|
|
PCOthVer *pVersion = (PCOthVer *)&data[0];
|
|
|
- strcpy(ShmDcCommonData->CabinetRelay0Version , pVersion->CabinetRelay0Version);
|
|
|
- strcpy(ShmDcCommonData->CabinetRelay1Version , pVersion->CabinetRelay1Version);
|
|
|
- strcpy(ShmDcCommonData->CabinetFanVersion , pVersion->CabinetFanVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetRelay0Version , (char*)pVersion->CabinetRelay0Version);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetRelay1Version , (char*)pVersion->CabinetRelay1Version);
|
|
|
+ strcpy((char*)ShmDcCommonData->CabinetFanVersion , (char*)pVersion->CabinetFanVersion);
|
|
|
}
|
|
|
void GetCabientEachPsuRevHandle(uint8_t *data)
|
|
|
{
|
|
|
PCnPsuVer *pVersion = (PCnPsuVer *)&data[0];
|
|
|
- strcpy(ShmDcCommonData->PsuVer[pVersion->n_PSU].DCVersion, pVersion->DCVersion);
|
|
|
- strcpy(ShmDcCommonData->PsuVer[pVersion->n_PSU].FPCVersion, pVersion->FPCVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->PsuVer[pVersion->n_PSU].DCVersion, (char*)pVersion->DCVersion);
|
|
|
+ strcpy((char*)ShmDcCommonData->PsuVer[pVersion->n_PSU].FPCVersion, (char*)pVersion->FPCVersion);
|
|
|
}
|
|
|
+
|
|
|
static int responsePackeHandle(int fd, uint8_t *pResult, uint8_t plugNum, uint8_t reg)
|
|
|
{
|
|
|
int ret = PASS;
|
|
@@ -1499,9 +1505,9 @@ static int responsePackeHandle(int fd, uint8_t *pResult, uint8_t plugNum, uint8_
|
|
|
return COMMAND_RESULT_NG;
|
|
|
}
|
|
|
gMoreInfoReq[plugNum].bits.UserPriceReq = NO;
|
|
|
- if (strcmp((char*)ShmDcCommonData->UserPriceString, (char*)pCsuResult->Data.Data) != EQUAL) {
|
|
|
- strcpy((char*)ShmDcCommonData->UserPriceString, (char*)pCsuResult->Data.Data);
|
|
|
- log_info("User Price:%s", ShmDcCommonData->UserPriceString);
|
|
|
+ if (strcmp((char*)ShmDcCommonData->pGunInfo[plugNum].UserPriceString, (char*)pCsuResult->Data.Data) != EQUAL) {
|
|
|
+ strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].UserPriceString, (char*)pCsuResult->Data.Data);
|
|
|
+ log_info("User Price:%s", ShmDcCommonData->pGunInfo[plugNum].UserPriceString);
|
|
|
}
|
|
|
break;
|
|
|
case REG_RECEIPT_INFO:
|
|
@@ -1514,6 +1520,23 @@ static int responsePackeHandle(int fd, uint8_t *pResult, uint8_t plugNum, uint8_
|
|
|
log_info("Gun%d Receipt:%s", plugNum, ShmDcCommonData->pGunInfo[plugNum].ReceiptInfo);
|
|
|
}
|
|
|
break;
|
|
|
+ case REG_READ_CHARGING_TIMESTAMP:
|
|
|
+ if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
|
|
|
+ return COMMAND_RESULT_NG;
|
|
|
+ }
|
|
|
+ if (rawDataLen <= 2) {
|
|
|
+ log_info("No Charging timestamp");
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStartTime, (char*)&pCsuResult->Data.Data[0]);
|
|
|
+ int timelen = strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStartTime);
|
|
|
+ if (timelen != 0) {
|
|
|
+ timelen = strcpy((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime, (char*)&pCsuResult->Data.Data[timelen+1]);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ /*
|
|
|
case REG_POWER_CONSUMPTION_INFO:
|
|
|
if (pCsuResult->Data.Result == COMMAND_RESULT_NG) {
|
|
|
return COMMAND_RESULT_NG;
|
|
@@ -1538,6 +1561,7 @@ static int responsePackeHandle(int fd, uint8_t *pResult, uint8_t plugNum, uint8_
|
|
|
|
|
|
|
|
|
break;
|
|
|
+ */
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
@@ -1578,18 +1602,17 @@ static int composeSocketData(int fd,
|
|
|
|
|
|
//send command packet
|
|
|
if ((size = sendTcpSocket(fd, (uint8_t *)&csuCmdPkt, sendPktLen)) < 0) {
|
|
|
- log_error("TCP socket send packet fail = %d", size);
|
|
|
+ log_error("TCP socket send packet fail = reg %d size = %d",reg, size);
|
|
|
gDoCommGblData.DisConnCount++;
|
|
|
return FAIL;
|
|
|
}
|
|
|
|
|
|
//receive result head
|
|
|
if ((size = recvTcpSocket(fd, (uint8_t *)&csuResult.Head, sizeof(csuResult.Head),1)) < 0) {
|
|
|
- log_error("TCP socket RX head fail = %d", size);
|
|
|
+ log_error("TCP socket RX head fail = reg %d size = %d",reg, size);
|
|
|
// 若收不到以下封包,不產生錯誤
|
|
|
if (reg != REG_CABINET_DCM_VERSION && reg != REG_CABINET_OTHER_VERSION &&
|
|
|
- reg != REG_TOTAL_PSU_QUANTITY && reg != REG_PSU_VERSION &&
|
|
|
- reg != REG_READ_CABINET_SYSTEMID) {
|
|
|
+ reg != REG_TOTAL_PSU_QUANTITY && reg != REG_PSU_VERSION ) {
|
|
|
gDoCommGblData.DisConnCount++;
|
|
|
}
|
|
|
return FAIL;
|
|
@@ -1597,7 +1620,7 @@ static int composeSocketData(int fd,
|
|
|
|
|
|
//receive result raw data
|
|
|
if ((size = recvTcpSocket(fd, (uint8_t *)&csuResult.Data, csuResult.Head.DataLen,0)) < 0) {
|
|
|
- log_error("TCP socket RX data fail = %d", size);
|
|
|
+ log_error("TCP socket RX data fail = reg %d size %d",reg, size);
|
|
|
gDoCommGblData.DisConnCount++;
|
|
|
return FAIL;
|
|
|
}
|
|
@@ -1738,11 +1761,29 @@ static int writeDeductInfo(int fd, uint8_t id,uint8_t gunIndex, RecordTransactio
|
|
|
return ret;
|
|
|
}
|
|
|
*/
|
|
|
+
|
|
|
+static int readChargingTimeStamp(int fd, uint8_t id)
|
|
|
+{
|
|
|
+ int ret = PASS;
|
|
|
+ if ((ret = composeSocketData(fd,
|
|
|
+ id,
|
|
|
+ OP_READ_DATA,
|
|
|
+ REG_READ_CHARGING_TIMESTAMP,
|
|
|
+ 0,
|
|
|
+ NULL)) == FAIL) {
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
static int writeWaitPlugItState(int fd, uint8_t id)
|
|
|
{
|
|
|
int ret = PASS;
|
|
|
uint8_t data[2] = {pSysInfo->WaitForPlugit, 0};
|
|
|
-
|
|
|
+ if (_isplugin != pSysInfo->WaitForPlugit) {
|
|
|
+ log_info("Wait for plug:%s", pSysInfo->WaitForPlugit == 0 ? "disable" : "enable");
|
|
|
+ _isplugin = pSysInfo->WaitForPlugit;
|
|
|
+ }
|
|
|
//printf("WaitForPlugit = %d", pSysInfo->WaitForPlugit);
|
|
|
|
|
|
if ((ret = composeSocketData(fd,
|
|
@@ -1911,7 +1952,8 @@ static int writeUserID(int fd, uint8_t id, uint8_t *pUserID)
|
|
|
|
|
|
static int writeConnectorState(int fd, uint8_t plugNum, uint8_t id)
|
|
|
{
|
|
|
- uint8_t dataBuf[10] = {'\0'};
|
|
|
+ uint8_t dataBuf[15] = {'\0'};
|
|
|
+ uint32_t _consumption;
|
|
|
ConnectorState *pConnState = (ConnectorState *)dataBuf;
|
|
|
static char vendorErrorCodeTmp[2][WARNING_CODE_SIZE] = {0};
|
|
|
int ret = PASS;
|
|
@@ -1972,6 +2014,9 @@ static int writeConnectorState(int fd, uint8_t plugNum, uint8_t id)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ memcpy((char*)&_consumption, (char*)&ShmDcCommonData->pGunInfo[plugNum].PowerConsumption, sizeof(float));
|
|
|
+ pConnState->consumption = ntohl(_consumption);
|
|
|
+
|
|
|
ret = composeSocketData(fd,
|
|
|
id,
|
|
|
OP_WRITE_DATA,
|
|
@@ -2223,6 +2268,7 @@ static int readUserPrice(int fd, uint8_t gunID)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+/*
|
|
|
static int readConsumptionInfo(int fd)
|
|
|
{
|
|
|
int ret = PASS;
|
|
@@ -2236,6 +2282,7 @@ static int readConsumptionInfo(int fd)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+*/
|
|
|
static int WriteModelName(int fd)
|
|
|
{
|
|
|
int ret = PASS;
|
|
@@ -2436,7 +2483,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(plugNum);
|
|
|
//ShmDcCommonData->TransactionInfo[plugNum].Amount = pDcChargingInfo->ChargingFee;
|
|
|
ShmDcCommonData->pGunInfo[plugNum].finalcost_flag = TRUE;
|
|
|
- log_info("Gun %d get final cost %f", plugNum, pDcChargingInfo->ChargingFee);
|
|
|
+ log_info("Set Final Cost Flag");
|
|
|
}
|
|
|
}
|
|
|
curReg = REG_PLUG_IN_STATE;
|
|
@@ -2509,8 +2556,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
case REG_QRCODE_URL_INFO:
|
|
|
if (gunID == 1) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > (LOOP_RETRY_TIME * 10) ||
|
|
|
- DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0
|
|
|
- ) {
|
|
|
+ DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0 ) {
|
|
|
readQRcodeURLAndSystemDate(fd);
|
|
|
ftime(&gRegTimeUp[plugNum][curReg]);
|
|
|
}
|
|
@@ -2525,15 +2571,32 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
// readChargePermission(fd, gunID);
|
|
|
// break;
|
|
|
|
|
|
+ case REG_READ_CABINET_SYSTEMID:
|
|
|
+ if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > (LOOP_RETRY_TIME * 10) ||
|
|
|
+ DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
+ readSystemID(fd);
|
|
|
+ ftime(&gRegTimeUp[plugNum][curReg]);
|
|
|
+ }
|
|
|
+ curReg = REG_MISC_CONTROL;
|
|
|
+ //check misc command from power cabinet
|
|
|
+ /*
|
|
|
+ if (gDoCommGblData.MiscCmd != 0) {
|
|
|
+ if (gDoCommGblData.MiscCmd != REG_MISC_CONTROL) {
|
|
|
+ log_error("misc command failed = %x", gDoCommGblData.MiscCmd);
|
|
|
+ }
|
|
|
+ curReg = gDoCommGblData.MiscCmd;
|
|
|
+ } else if (gMoreInfoReq[plugNum].Value != 0) {
|
|
|
+ curReg = REG_RESERVATION_IDTAG;
|
|
|
+ } else {
|
|
|
+ isContinue = 0;
|
|
|
+ }*/
|
|
|
+ break;
|
|
|
case REG_MISC_CONTROL:
|
|
|
readMiscCommand(fd, gunID);
|
|
|
|
|
|
- if(gMoreInfoReq[plugNum].Value == 0)
|
|
|
- {
|
|
|
+ if(gMoreInfoReq[plugNum].Value == 0) {
|
|
|
isContinue = 0;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
+ } else {
|
|
|
curReg = REG_RESERVATION_IDTAG;
|
|
|
}
|
|
|
break;
|
|
@@ -2547,55 +2610,15 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
isContinue = 0;
|
|
|
} else {
|
|
|
//power up write dispenser version and get power cabinet system ID
|
|
|
- if ((writeCsuModuleVersion(fd) == PASS) &&
|
|
|
- (writeOtherModuleVersion(fd) == PASS) &&
|
|
|
- (readQRcodeURLAndSystemDate(fd) == PASS)
|
|
|
- ) {
|
|
|
+ if ((writeCsuModuleVersion(fd) == PASS) && (writeOtherModuleVersion(fd) == PASS) &&
|
|
|
+ (readQRcodeURLAndSystemDate(fd) == PASS)) {
|
|
|
//gDoCommGblData.DisConnCount = 0;
|
|
|
isContinue = 0;
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
- //case REG_PRESENT_CHARGING_INFO:
|
|
|
- // break;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- //case REG_WAIT_PLUG_IT_STATE:
|
|
|
- // if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > (LOOP_RETRY_TIME / 10)) {
|
|
|
- // writeWaitPlugItState(fd, gunID);
|
|
|
- // ftime(&gRegTimeUp[plugNum][curReg]);
|
|
|
- // }
|
|
|
- // isContinue = 0;
|
|
|
- // break;
|
|
|
-
|
|
|
- //case REG_CABINET_DCM_VERSION:
|
|
|
- // break;
|
|
|
-
|
|
|
- //case REG_CABINET_OTHER_VERSION:
|
|
|
- // break;
|
|
|
-
|
|
|
- //case REG_TOTAL_PSU_QUANTITY:
|
|
|
- // break;
|
|
|
-
|
|
|
- //case REG_PSU_VERSION:
|
|
|
- // break;
|
|
|
-
|
|
|
-
|
|
|
- //case REG_DISPENSER_REQUEST:
|
|
|
- // break;
|
|
|
-
|
|
|
-
|
|
|
- case REG_READ_CABINET_SYSTEMID:
|
|
|
- if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
- DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
- readSystemID(fd);
|
|
|
- ftime(&gRegTimeUp[plugNum][curReg]);
|
|
|
- }
|
|
|
- curReg = REG_POWER_CONSUMPTION_INFO;
|
|
|
- break;
|
|
|
-
|
|
|
+ /*
|
|
|
case REG_POWER_CONSUMPTION_INFO:
|
|
|
if (pSysConfig->ShowInformation || ShmDcCommonData->DebugFlag) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
@@ -2616,10 +2639,9 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
isContinue = 0;
|
|
|
}
|
|
|
break;
|
|
|
-
|
|
|
+ */
|
|
|
case REG_RESERVATION_IDTAG:
|
|
|
- if (gMoreInfoReq[plugNum].bits.ReservationReq)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.ReservationReq) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
if (readReservationState(fd, gunID) == PASS)
|
|
@@ -2632,8 +2654,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
curReg = REG_REMOTE_START_NO_ID;
|
|
|
break;
|
|
|
case REG_REMOTE_START_NO_ID:
|
|
|
- if (gMoreInfoReq[plugNum].bits.RemoteStartNoID)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.RemoteStartNoID) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
if (readRemoteStartNoIDState(fd) == PASS)
|
|
@@ -2646,8 +2667,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
curReg = REG_STATION_INFO;
|
|
|
break;
|
|
|
case REG_STATION_INFO:
|
|
|
- if (gMoreInfoReq[plugNum].bits.StationInfoReq)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.StationInfoReq) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
|
|
@@ -2663,8 +2683,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
break;
|
|
|
|
|
|
case REG_READ_DEFAULT_PRICE:
|
|
|
- if (gMoreInfoReq[plugNum].bits.DefaultPriceReq)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.DefaultPriceReq) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
readDefaultPrice(fd);
|
|
@@ -2674,8 +2693,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
curReg = REG_READ_USER_PRICE;
|
|
|
break;
|
|
|
case REG_READ_USER_PRICE:
|
|
|
- if (gMoreInfoReq[plugNum].bits.UserPriceReq)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.UserPriceReq) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
readUserPrice(fd,gunID);
|
|
@@ -2685,8 +2703,7 @@ static int messageTrigger(int fd, uint8_t plugNum, uint8_t gunID, uint8_t curReg
|
|
|
curReg = REG_RECEIPT_INFO;
|
|
|
break;
|
|
|
case REG_RECEIPT_INFO:
|
|
|
- if (gMoreInfoReq[plugNum].bits.ReceiptReq)
|
|
|
- {
|
|
|
+ if (gMoreInfoReq[plugNum].bits.ReceiptReq) {
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) > LOOP_RETRY_TIME ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][curReg], NowTime) < 0) {
|
|
|
readReceiptInfo(fd, gunID);
|
|
@@ -2750,10 +2767,18 @@ static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8
|
|
|
case S_MAINTAIN:
|
|
|
case S_ALARM:
|
|
|
case S_AUTHORIZING:
|
|
|
- if(pDcChargingInfo->SystemStatus != S_ALARM)
|
|
|
- {
|
|
|
- DeductResultReq[plugNum] = NO;
|
|
|
+
|
|
|
+ if(pDcChargingInfo->SystemStatus == S_ALARM &&
|
|
|
+ strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
|
|
|
+ ftime(&AuthNowTime);
|
|
|
+ if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
|
|
|
+ DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
|
|
|
+ ) {
|
|
|
+ readChargingTimeStamp(fd, gunID);
|
|
|
+ ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
checkAuthorProcess(fd, plugNum);
|
|
|
|
|
|
//authorization complete, write wait plug it state
|
|
@@ -2798,7 +2823,7 @@ static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8
|
|
|
}
|
|
|
|
|
|
ftime(&AuthNowTime);
|
|
|
- if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > LOOP_RETRY_TIME ||
|
|
|
+ if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) > (LOOP_RETRY_TIME/2) ||
|
|
|
DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
|
|
|
) {
|
|
|
if (readChargePermission(fd, gunID) && readChargingCapability(fd, gunID)) {
|
|
@@ -2919,10 +2944,12 @@ static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8
|
|
|
DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_PERMISSION], AuthNowTime) < 0
|
|
|
) {
|
|
|
if (readChargePermission(fd, gunID) == 0) {
|
|
|
- log_info("Stop charging by power cabinet's permission = %d, %d",
|
|
|
- plugNum,
|
|
|
- REG_CHARGING_PERMISSION);
|
|
|
- pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
|
|
|
+ if (pDcChargingInfo->StopChargeFlag != POWER_CABINET_STOP_CHARGING) {
|
|
|
+ log_info("Stop charging by power cabinet's permission = %d, %d",
|
|
|
+ plugNum,
|
|
|
+ REG_CHARGING_PERMISSION);
|
|
|
+ pDcChargingInfo->StopChargeFlag = POWER_CABINET_STOP_CHARGING;
|
|
|
+ }
|
|
|
//printf("%d StopChargeFlag = %d\n", plugNum, pDcChargingInfo->StopChargeFlag);
|
|
|
}
|
|
|
ftime(&gRegTimeUp[plugNum][REG_CHARGING_PERMISSION]);
|
|
@@ -2936,8 +2963,18 @@ static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8
|
|
|
writePresentChargingInfo(fd, plugNum, gunID);
|
|
|
ftime(&gRegTimeUp[plugNum][REG_PRESENT_CHARGING_INFO]);
|
|
|
}
|
|
|
- break;
|
|
|
|
|
|
+ // 獲得Charging時間
|
|
|
+ if (strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
|
|
|
+ ftime(&AuthNowTime);
|
|
|
+ if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
|
|
|
+ DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
|
|
|
+ ) {
|
|
|
+ readChargingTimeStamp(fd, gunID);
|
|
|
+ ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
case S_COMPLETE:
|
|
|
ftime(&AuthNowTime);
|
|
|
if (DiffTimeb(gRegTimeUp[plugNum][REG_CHARGING_CAP], AuthNowTime) > LOOP_RETRY_TIME ||
|
|
@@ -2948,8 +2985,17 @@ static void systemStatusProcess(int fd, uint8_t totalGun, uint8_t plugNum, uint8
|
|
|
writeGroundFaultDetection(fd, 0, gunID);
|
|
|
ftime(&gRegTimeUp[plugNum][REG_CHARGING_CAP]);
|
|
|
}
|
|
|
+ // 獲得Charging時間
|
|
|
+ if (strlen((char*)ShmDcCommonData->pGunInfo[plugNum].ChargeStopTime) <= 1) {
|
|
|
+ ftime(&AuthNowTime);
|
|
|
+ if (DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) > LOOP_RETRY_TIME ||
|
|
|
+ DiffTimeb(gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP], AuthNowTime) < 0
|
|
|
+ ) {
|
|
|
+ readChargingTimeStamp(fd, gunID);
|
|
|
+ ftime(&gRegTimeUp[plugNum][REG_READ_CHARGING_TIMESTAMP]);
|
|
|
+ }
|
|
|
+ }
|
|
|
break;
|
|
|
-
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
@@ -3057,7 +3103,7 @@ int main(int argc, char *argv[])
|
|
|
}
|
|
|
|
|
|
setTcpStatus(NORMAL);
|
|
|
-
|
|
|
+ gDoCommGblData.DisConnCount = 0;
|
|
|
while (isContinue) {
|
|
|
if (initDone == DISPENER_INIT_FAIL) {
|
|
|
fd = networkCreatePorcess();
|