Procházet zdrojové kódy

2021-09-07 / Alston Lin
Actions
1. Added error code for indicating system task lost
Files
1. As follow commit history

alston před 3 roky
rodič
revize
ec757133e0
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 3 2
      EVSE/Projects/define.h

+ 3 - 2
EVSE/Projects/define.h

@@ -1271,7 +1271,7 @@ char AlarmStatusCode[128][6]=
     "012323",   // System Chiller output OTP
     "012324",   // Connector 1 detects abnormal voltage on the output line
     "012325",   // Connector 2 detects abnormal voltage on the output line
-    "012326",   // reserved
+    "012326",   // System task is lost
     "012327",   // reserved
 };
 struct AlarmCodeData
@@ -1424,7 +1424,8 @@ struct AlarmCodeData
             unsigned char SystemChillerOTP:1;                       //bit 3
             unsigned char AbnormalVoltageOnOutputLine_1:1;          //bit 4
             unsigned char AbnormalVoltageOnOutputLine_2:1;          //bit 5
-            unsigned char Reserved:2;                               //bit 6~7
+            unsigned char SystemTaskLost:1;                         //bit 6
+            unsigned char Reserved:1;                               //bit 7
 		}bits;
 	}AlarmEvents;
 };