|
@@ -15,12 +15,12 @@
|
|
|
|
|
|
#include <unistd.h>
|
|
|
#include <stdarg.h>
|
|
|
-#include <stdio.h> /*標準輸入輸出定義*/
|
|
|
-#include <stdlib.h> /*標準函數庫定義*/
|
|
|
-#include <unistd.h> /*Unix 標準函數定義*/
|
|
|
-#include <fcntl.h> /*檔控制定義*/
|
|
|
-#include <termios.h> /*PPSIX 終端控制定義*/
|
|
|
-#include <errno.h> /*錯誤號定義*/
|
|
|
+#include <stdio.h>
|
|
|
+#include <stdlib.h>
|
|
|
+#include <unistd.h>
|
|
|
+#include <fcntl.h>
|
|
|
+#include <termios.h>
|
|
|
+#include <errno.h>
|
|
|
#include <errno.h>
|
|
|
#include <string.h>
|
|
|
#include <time.h>
|
|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
//#define SIMULATION
|
|
|
|
|
|
-#define FAIL_SPEC_COMM 1000
|
|
|
+#define FAIL_SPEC_COMM 100
|
|
|
#define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
|
|
|
#define PASS 1
|
|
|
#define FAIL 0
|
|
@@ -2783,6 +2783,9 @@ int main(void)
|
|
|
//===============================
|
|
|
if(failCount[gun_index] >= FAIL_SPEC_COMM)
|
|
|
{
|
|
|
+ if((0 <= failCount[gun_index]%FAIL_SPEC_COMM) && (failCount[gun_index]%FAIL_SPEC_COMM < 10))
|
|
|
+ sleep(10);
|
|
|
+
|
|
|
if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.comm_timeout == OFF)
|
|
|
{
|
|
|
DEBUG_ERROR("Primary MCU-%d communication fault", gun_index);
|