1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-16 12:12:57 +00:00

Fix for more than one measuement

This commit is contained in:
Carles Fernandez 2016-10-01 11:39:04 +02:00
parent 79e2663d08
commit 0e65bfc813

View File

@ -105,12 +105,14 @@ void receive_msg()
//strftime(buf, sizeof(buf), "%d-%m-%Y-%H-%M-%S", &tstruct); //strftime(buf, sizeof(buf), "%d-%m-%Y-%H-%M-%S", &tstruct);
if( ttff_msg != 0) if( ttff_msg != 0)
{ {
TTFF_v.push_back(ttff_msg * FLAGS_fs_in); // Fix this ! TTFF_v.push_back(ttff_msg / (100 * 10)); // Fix this ! averaging_depth * output_rate_ms
receive_msg();
} }
//if(TTFF==0) receive_msg(); //if(TTFF==0) receive_msg();
} }
//} //}
std::cout << "--------RECEIVEr msg thread stops " << std::endl; std::cout << "--------RECEIVEr msg thread stops " << std::endl;
//std::cout<<"RECEIVER MSG THREAD STOP.\n"; //std::cout<<"RECEIVER MSG THREAD STOP.\n";
return; return;