浏览代码

2021-12-14 / Eason Yang
Action:
1. BugFix: Power saving for socket e type logic.
2. Added: Log print when the system change to plug and charge.

File:
1. main.c
Action 1

2. Module_LcmControl.c
Action 2

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

8009 3 年之前
父节点
当前提交
70a343a953
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 0
      EVSE/Projects/AW-CCS/Apps/LCM/Module_LcmControl.c
  2. 1 3
      EVSE/Projects/AW-CCS/Apps/main.c

+ 2 - 0
EVSE/Projects/AW-CCS/Apps/LCM/Module_LcmControl.c

@@ -331,6 +331,8 @@ void page_idle(uint8_t gun_index, uint8_t system_mode)
 					if((getCurrentPage() != SYSTEM_SCREEN_PLUG_AND_CHARGE))
 					{
 						setCurrentPage(SYSTEM_SCREEN_PLUG_AND_CHARGE);
+						setDefaultValue(gun_index, system_mode);
+						DEBUG_INFO("Setting page to plug and charge.\n");
 					}
 					else
 					{

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

@@ -4931,7 +4931,7 @@ int main(void)
 			 *	TODO:
 			 *	1. Power saving logic
 			 */
-			if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A) || (ShmCharger->gun_info[gun_index].primaryMcuState.socket_e.isSocketEPinOn == OFF))
+			if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A) && (ShmCharger->gun_info[gun_index].primaryMcuState.socket_e.isSocketEPinOn == OFF))
 			{
 				ftime(&startTime[gun_index][TMR_IDX_POWERSAVING_STATE_B]);
 			}
@@ -6053,8 +6053,6 @@ int main(void)
 
 						getDateTimeString((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StopDateTime);
 						ShmCharger->gun_info[gun_index].resultAuthorization = DEFAULT_RFID;
-						
-						sleep(3);
 					}
 
 					ftime(&endChargingTime[gun_index]);