Commit 6bada33e authored by winckel's avatar winckel

Corrected sleep for XFORMS option (1s -> 100ms).

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5048 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 2937ec00
...@@ -140,7 +140,7 @@ char UE_flag=0; ...@@ -140,7 +140,7 @@ char UE_flag=0;
u8 eNB_id=0,UE_id=0; u8 eNB_id=0,UE_id=0;
u32 carrier_freq[4]= {1907600000,1907600000,1907600000,1907600000}; u32 carrier_freq[4]= {1907600000,1907600000,1907600000,1907600000};
char *g_conf_config_file_name = NULL; char *conf_config_file_name = NULL;
unsigned int lost_bytes=0; unsigned int lost_bytes=0;
...@@ -263,7 +263,7 @@ void *scope_thread(void *arg) { ...@@ -263,7 +263,7 @@ void *scope_thread(void *arg) {
} }
//printf("doing forms\n"); //printf("doing forms\n");
sleep(0.1); usleep(100000); // 100 ms
} }
//fclose (UE_stats); //fclose (UE_stats);
...@@ -700,7 +700,7 @@ int main(int argc, char **argv) { ...@@ -700,7 +700,7 @@ int main(int argc, char **argv) {
#endif #endif
break; break;
case 'O': case 'O':
g_conf_config_file_name = optarg; conf_config_file_name = optarg;
break; break;
case 'F': case 'F':
sprintf(rxg_fname,"%srxg.lime",optarg); sprintf(rxg_fname,"%srxg.lime",optarg);
......
...@@ -264,7 +264,7 @@ void *scope_thread(void *arg) ...@@ -264,7 +264,7 @@ void *scope_thread(void *arg)
} }
//printf("doing forms\n"); //printf("doing forms\n");
sleep(1); usleep(100000); // 100 ms
} }
//fclose (UE_stats); //fclose (UE_stats);
......
...@@ -583,7 +583,7 @@ void *scope_thread(void *arg) ...@@ -583,7 +583,7 @@ void *scope_thread(void *arg)
} }
//printf("doing forms\n"); //printf("doing forms\n");
sleep(0.1); usleep(100000); // 100 ms
} }
//fclose (UE_stats); //fclose (UE_stats);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment