瀏覽代碼

Merge branch 'master' of https://git.phihong.com.tw:30000/System_Integration/CSU3_AM335x

FolusWen 3 年之前
父節點
當前提交
042cae1cc5
共有 1 個文件被更改,包括 3 次插入2 次删除
  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;
 };