1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-06-05 16:14:09 +00:00

code cleaning

This commit is contained in:
Carles Fernandez 2019-08-17 15:47:20 +02:00
parent e4c3ee7527
commit a0eaa67d7d
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 5 additions and 5 deletions

View File

@ -1940,10 +1940,10 @@ int rtklib_pvt_gs::work(int noutput_items, gr_vector_const_void_star& input_item
} }
} }
// debug code // debug code
// else // else
// { // {
// DLOG(INFO) << "Internal PVT solver error"; // DLOG(INFO) << "Internal PVT solver error";
// } // }
// compute on the fly PVT solution // compute on the fly PVT solution
if (flag_compute_pvt_output == true) if (flag_compute_pvt_output == true)

View File

@ -926,7 +926,7 @@ bool Rtklib_Solver::get_PVT(const std::map<int, Gnss_Synchro> &gnss_observables_
if (result == 0) if (result == 0)
{ {
LOG(INFO) << "RTKLIB rtkpos error: " << rtk_.errbuf; LOG(INFO) << "RTKLIB rtkpos error: " << rtk_.errbuf;
rtk_.neb = 0; //clear error buffer to avoid repeating the error message rtk_.neb = 0; // clear error buffer to avoid repeating the error message
this->set_time_offset_s(0.0); // reset rx time estimation this->set_time_offset_s(0.0); // reset rx time estimation
this->set_num_valid_observations(0); this->set_num_valid_observations(0);
} }