|
@@ -719,7 +719,7 @@ char AlarmStatusCode[128][6]=
|
|
"012213", //System L2 input drop
|
|
"012213", //System L2 input drop
|
|
"012214", //System L3 input drop
|
|
"012214", //System L3 input drop
|
|
"012215", //System AC output OVP
|
|
"012215", //System AC output OVP
|
|
- "012216", //System AC output OCP
|
|
+ "012216", //System AC output OCP L1
|
|
"012217", //System CHAdeMO output OVP
|
|
"012217", //System CHAdeMO output OVP
|
|
"012218", //System CHAdeMO output OCP
|
|
"012218", //System CHAdeMO output OCP
|
|
"012219", //System CCS output OVP
|
|
"012219", //System CCS output OVP
|
|
@@ -765,7 +765,7 @@ char AlarmStatusCode[128][6]=
|
|
"012259", //CHAdeMO groundfault detection timeout (GFD)
|
|
"012259", //CHAdeMO groundfault detection timeout (GFD)
|
|
"012260", //CCS groundfault detection timeout (GFD)
|
|
"012260", //CCS groundfault detection timeout (GFD)
|
|
"012261", //GB groundfault detection timeout (GFD)
|
|
"012261", //GB groundfault detection timeout (GFD)
|
|
- "012262", //Circuit Short
|
|
+ "012262", //Circuit Short L1
|
|
"012263", // PSU Duplicate ID
|
|
"012263", // PSU Duplicate ID
|
|
"012264", // PSU Output Short Circuit
|
|
"012264", // PSU Output Short Circuit
|
|
"012265", // PSU Discharge Abnormal
|
|
"012265", // PSU Discharge Abnormal
|
|
@@ -796,12 +796,16 @@ char AlarmStatusCode[128][6]=
|
|
"012290", // GBT output UVP
|
|
"012290", // GBT output UVP
|
|
"012291", // Self test Failed due to communication of GBTboard failure
|
|
"012291", // Self test Failed due to communication of GBTboard failure
|
|
"012292", // Self test Failed due to communication of AC failure
|
|
"012292", // Self test Failed due to communication of AC failure
|
|
- "012293", // Self test Failed due to communication of Ledboard failure
|
|
+ "012293", // Reserved
|
|
"012294", // Ac input OVP
|
|
"012294", // Ac input OVP
|
|
"012295", // Ac input UVP
|
|
"012295", // Ac input UVP
|
|
"012296", // CHAdeMO groundfault detection - warning
|
|
"012296", // CHAdeMO groundfault detection - warning
|
|
"012297", // CCS groundfault detection - warning
|
|
"012297", // CCS groundfault detection - warning
|
|
"012298", // GB groundfault detection - warning
|
|
"012298", // GB groundfault detection - warning
|
|
|
|
+ "012299", //System AC output OCP L2
|
|
|
|
+ "012300", //System AC output OCP L3
|
|
|
|
+ "012301", //Circuit Short L2
|
|
|
|
+ "012302", //Circuit Short L3
|
|
|
|
|
|
};
|
|
};
|
|
struct AlarmCodeData
|
|
struct AlarmCodeData
|
|
@@ -917,14 +921,18 @@ struct AlarmCodeData
|
|
unsigned char GbtOutputUVPFail :1; //bit 2
|
|
unsigned char GbtOutputUVPFail :1; //bit 2
|
|
unsigned char GbtboardStestFail :1; //bit 3
|
|
unsigned char GbtboardStestFail :1; //bit 3
|
|
unsigned char AcConnectorStestFail:1; //bit 4
|
|
unsigned char AcConnectorStestFail:1; //bit 4
|
|
- unsigned char LedboardStestFail:1; //bit 5
|
|
+ unsigned char :1; //bit 5
|
|
- unsigned char AcSystemInputOVP:1; //bit 6
|
|
+ unsigned char AcSystemInputOVP:1; //bit 6
|
|
- unsigned char AcSystemInputUVP:1; //bit 7
|
|
+ unsigned char AcSystemInputUVP:1; //bit 7
|
|
//AlarmVal[12]
|
|
//AlarmVal[12]
|
|
unsigned char ChademoGroundWarning :1; //bit 0
|
|
unsigned char ChademoGroundWarning :1; //bit 0
|
|
unsigned char CcsGroundfaultWarning :1; //bit 1
|
|
unsigned char CcsGroundfaultWarning :1; //bit 1
|
|
unsigned char GbGroundfaultWarning :1; //bit 2
|
|
unsigned char GbGroundfaultWarning :1; //bit 2
|
|
- unsigned char :5; //bit 3 ~ 7
|
|
+ unsigned char SystemAcOutputOCPL2:1; //bit 3
|
|
|
|
+ unsigned char SystemAcOutputOCPL3:1; //bit 4
|
|
|
|
+ unsigned char CircuitShortL2:1; //bit 5
|
|
|
|
+ unsigned char CircuitShortL3:1; //bit 6
|
|
|
|
+ unsigned char :1; //bit 7
|
|
}bits;
|
|
}bits;
|
|
}AlarmEvents;
|
|
}AlarmEvents;
|
|
};
|
|
};
|