|
@@ -89,6 +89,10 @@ struct StartTime
|
|
unsigned int bootNotification;
|
|
unsigned int bootNotification;
|
|
}startTime;
|
|
}startTime;
|
|
|
|
|
|
|
|
+#if 0
|
|
|
|
+unsigned char *SendBuffer;
|
|
|
|
+int SendBufLen=(1024*4);//(1024*3);
|
|
|
|
+#endif
|
|
int SendBufLen=(1024*4);//(1024*3);
|
|
int SendBufLen=(1024*4);//(1024*3);
|
|
unsigned char SendBuffer[1024*4]={0};
|
|
unsigned char SendBuffer[1024*4]={0};
|
|
static int ConnectionEstablished=0;
|
|
static int ConnectionEstablished=0;
|
|
@@ -1722,7 +1726,7 @@ int main(void)
|
|
|
|
|
|
for(;;)
|
|
for(;;)
|
|
{
|
|
{
|
|
- while((ConnectionEstablished==0)&&(GetInternetConn() == 1)) // Check InternetConn 0: disconnected, 1: connected
|
|
|
|
|
|
+ while(ConnectionEstablished==0) // Check InternetConn 0: disconnected, 1: connected
|
|
{
|
|
{
|
|
SetOcppConnStatus(FALSE);
|
|
SetOcppConnStatus(FALSE);
|
|
if((time((time_t*)NULL)-startTime.connect)>=60)
|
|
if((time((time_t*)NULL)-startTime.connect)>=60)
|
|
@@ -1737,8 +1741,10 @@ int main(void)
|
|
|
|
|
|
// Check System Value, process offline Transaction
|
|
// Check System Value, process offline Transaction
|
|
CheckSystemValue();
|
|
CheckSystemValue();
|
|
- lws_service(context, 10000);//timeout_ms
|
|
|
|
usleep(5000);
|
|
usleep(5000);
|
|
|
|
+ lws_service(context, 10000);//timeout_ms
|
|
|
|
+ //lws_service(context, 100);//timeout_ms
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
if(( (BootNotificationInterval != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) ) || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))
|
|
if(( (BootNotificationInterval != 0 && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) ) || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))
|