|
@@ -568,6 +568,10 @@ struct ChargingInfoData
|
|
|
int EvBatteryStartSoc; // 0~100%
|
|
|
unsigned char NormalStopChargeFlag; // for EV board
|
|
|
ChargingStop ChargingStopFlag;
|
|
|
+ char ReservedStartFlag;
|
|
|
+ float ConnectorMaxVoltage; // 0~6553.5 volt
|
|
|
+ float ConnectorMaxCurrent; // 0~6553.5 volt
|
|
|
+ unsigned char ModelType;
|
|
|
};
|
|
|
|
|
|
typedef union
|
|
@@ -1183,9 +1187,9 @@ char AlarmStatusCode[128][6]=
|
|
|
"012317", // Psu Dcdc Eeprom Fault
|
|
|
"012318", // Psu Pfc Eeprom Fault
|
|
|
"012319", // Psu Dcdc Over Voltage
|
|
|
- "012320", // reserved
|
|
|
- "012321", // reserved
|
|
|
- "012322", // reserved
|
|
|
+ "012320", // System CHAdeMO output UCP
|
|
|
+ "012321", // System CCS output UCP
|
|
|
+ "012322", // System GBT output UCP
|
|
|
"012323", // reserved
|
|
|
"012324", // reserved
|
|
|
"012325", // reserved
|
|
@@ -1336,7 +1340,10 @@ struct AlarmCodeData
|
|
|
unsigned char PsuPfcEepromFault:1; //bit 6
|
|
|
unsigned char PsuDcdcOverVoltage:1; //bit 7
|
|
|
//AlarmVal[15]
|
|
|
- unsigned char Reserved:8; //bit 0~7
|
|
|
+ unsigned char SystemChademoOutputUCP:1; //bit 0
|
|
|
+ unsigned char SystemCCSOutputUCP:1; //bit 1
|
|
|
+ unsigned char SystemGBTOutputUCP:1; //bit 2
|
|
|
+ unsigned char Reserved:5; //bit 3~7
|
|
|
}bits;
|
|
|
}AlarmEvents;
|
|
|
};
|