Browse Source

2020-03-08 / Alston Lin

Actions
1. Add Chandemo and CCS output voltage UVP fail.

Files
1. As follow commit history.
Alston 5 years ago
parent
commit
ceb5b25b6d
1 changed files with 8 additions and 2 deletions
  1. 8 2
      EVSE/Projects/define.h

+ 8 - 2
EVSE/Projects/define.h

@@ -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;
 };