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