|
@@ -674,13 +674,15 @@ char AlarmStatusCode[128][6]=
|
|
|
"012285", // Self test Failed due to AC Contact failure
|
|
|
"012286", // Self test Failed due to communication of PSU failure
|
|
|
"012287", // Self test Failed due to Model name is none match
|
|
|
+ "012288", // CCS output UVP
|
|
|
+ "012289", // Chademo output UVP
|
|
|
};
|
|
|
struct AlarmCodeData
|
|
|
{
|
|
|
- unsigned char PreviousAlarmVal[11];
|
|
|
+ unsigned char PreviousAlarmVal[12];
|
|
|
union
|
|
|
{
|
|
|
- unsigned char AlarmVal[11];
|
|
|
+ unsigned char AlarmVal[12];
|
|
|
struct
|
|
|
{
|
|
|
//AlarmVal[0]
|
|
@@ -782,6 +784,10 @@ struct AlarmCodeData
|
|
|
unsigned char AcContactStestFail :1; //bit 5
|
|
|
unsigned char PsuModuleStestFail :1; //bit 6
|
|
|
unsigned char ModelNameNoneMatchStestFail:1; //bit 7
|
|
|
+ //AlarmVal[11]
|
|
|
+ unsigned char CcsOutputUVPFail :1; //bit 0
|
|
|
+ unsigned char ChademoOutputUVPFail :1; //bit 1
|
|
|
+ unsigned char :6; //bit 2 ~ 7
|
|
|
}bits;
|
|
|
}AlarmEvents;
|
|
|
};
|