|
@@ -2297,9 +2297,11 @@ int LoadSysConfigAndInfo(struct SysConfigData *ptr)
|
|
|
if(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx] == '7')
|
|
|
ShmCharger->isCcsEnable = ON;
|
|
|
}
|
|
|
- #ifdef ENABLE_CCS
|
|
|
+
|
|
|
+ #ifdef ENABLE_CCS
|
|
|
ShmCharger->isCcsEnable = ON;
|
|
|
#endif
|
|
|
+
|
|
|
RatedCurrentParsing((char*)ShmSysConfigAndInfo->SysConfig.ModelName, &modelnameInfo);
|
|
|
|
|
|
return PASS;
|
|
@@ -2964,7 +2966,7 @@ void get_firmware_version(unsigned char gun_index)
|
|
|
strcpy((char*)ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ShmCharger->gun_info[gun_index].ver.Version_FW);
|
|
|
|
|
|
// Get CSU root file system version
|
|
|
- sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "B0.60.00.0000.00");
|
|
|
+ sprintf((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "B0.61.00.0000.00");
|
|
|
|
|
|
// Get AC connector type from model name
|
|
|
for(uint8_t idx=0;idx<3;idx++)
|
|
@@ -4036,20 +4038,20 @@ void checkTask()
|
|
|
}
|
|
|
|
|
|
if(ShmCharger->isCcsEnable == ON)
|
|
|
- {
|
|
|
- if((system("pidof -s CsuComm > /dev/null") != 0))
|
|
|
- {
|
|
|
- DEBUG_INFO("CsuComm not running, restart it.\n");
|
|
|
- system ("/root/CsuComm &");
|
|
|
- }
|
|
|
-
|
|
|
- if((system("pidof -s SeccComm > /dev/null") != 0))
|
|
|
- {
|
|
|
- sleep(3);
|
|
|
- DEBUG_INFO("SeccComm not running, restart it.\n");
|
|
|
- system ("/root/SeccComm &");
|
|
|
- }
|
|
|
- }
|
|
|
+ {
|
|
|
+ if((system("pidof -s CsuComm > /dev/null") != 0))
|
|
|
+ {
|
|
|
+ DEBUG_INFO("CsuComm not running, restart it.\n");
|
|
|
+ system ("/root/CsuComm &");
|
|
|
+ }
|
|
|
+
|
|
|
+ if((system("pidof -s SeccComm > /dev/null") != 0))
|
|
|
+ {
|
|
|
+ sleep(3);
|
|
|
+ DEBUG_INFO("SeccComm not running, restart it.\n");
|
|
|
+ system ("/root/SeccComm &");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void checkConnectionTimeout()
|
|
@@ -4392,6 +4394,7 @@ void checkChargingProfileLimit(uint8_t gun_index, uint8_t system_mode)
|
|
|
ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current = ((1 <= ShmCharger->gun_info[gun_index].targetCurrent) && (ShmCharger->gun_info[gun_index].targetCurrent <= 5)? 6:((ShmCharger->gun_info[gun_index].targetCurrent == 0)? 100:ShmCharger->gun_info[gun_index].targetCurrent));
|
|
|
}
|
|
|
ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = YES;
|
|
|
+
|
|
|
break;
|
|
|
case SYS_MODE_CHARGING:
|
|
|
case SYS_MODE_TERMINATING:
|