|
@@ -2371,6 +2371,7 @@ void CheckSystemValue(void)
|
|
|
sendStartTransactionRequest(gun_index);
|
|
|
clientTime.StartTransaction = time((time_t*)NULL);
|
|
|
clientTime.MeterValues[gun_index] = time((time_t*)NULL);
|
|
|
+ storeTempStopTransaction(gun_index);
|
|
|
}
|
|
|
|
|
|
//==============================================
|
|
@@ -2909,7 +2910,7 @@ void CheckSystemValue(void)
|
|
|
// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
|
|
|
if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex)
|
|
|
{
|
|
|
- if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)
|
|
|
+ if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING))
|
|
|
{
|
|
|
reqSampleMeter[gun_index] = 1;
|
|
|
}
|
|
@@ -4841,7 +4842,9 @@ int sendMeterValuesRequest(int gun_index, ReadingContext dataType)
|
|
|
memset(&ShmOCPP16Data->MeterValues[gun_index], 0, sizeof(struct StructMeterValues));
|
|
|
//set value
|
|
|
ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
|
|
|
- ShmOCPP16Data->MeterValues[gun_index].TransactionId = ((strstr((char*)ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging") != NULL) ? ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId : -1);
|
|
|
+ ShmOCPP16Data->MeterValues[gun_index].TransactionId = (((strstr((char*)ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging") != NULL) || (strstr((char*)ShmOCPP16Data->StatusNotification[gun_index].Status, "SuspendedEV") != NULL) || (strstr((char*)ShmOCPP16Data->StatusNotification[gun_index].Status, "SuspendedEVSE") != NULL) )?
|
|
|
+ ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId :
|
|
|
+ -1);
|
|
|
|
|
|
random_uuid(guid);
|
|
|
|