Browse Source

2022-01-17 / Eason Yang
Action
1. Push source again. forgot to saving the main.c.

File
1. main.c

FIRMWARE VERSION: B0.61.XX.XXXX.PX

8009 3 years ago
parent
commit
0f93e6010f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      EVSE/Projects/AW-CCS/Apps/main.c

+ 2 - 1
EVSE/Projects/AW-CCS/Apps/main.c

@@ -2899,7 +2899,8 @@ float presentChargedEnergyTotal(unsigned char gun_index)
 
 	for(int idx=0;idx<ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].presentChargedEnergyPeriod);idx++)
 	{
-		result += ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].presentChargedEnergyPeriod[idx];
+		//result += ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].presentChargedEnergyPeriod[idx];
+		result += (((int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].presentChargedEnergyPeriod[idx]*1000))/(float)1000);
 	}
 
 	return result;