mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-10-22 02:57:41 +00:00
clang-tidy: apply fixes
This commit is contained in:
@@ -102,7 +102,7 @@ double radtodeg(double angleInRadians);
|
||||
|
||||
double mstoknotsh(double MetersPerSeconds);
|
||||
|
||||
double mstokph(double Kph);
|
||||
double mstokph(double MetersPerSeconds);
|
||||
|
||||
arma::vec CTM_to_Euler(const arma::mat &C);
|
||||
|
||||
|
@@ -368,7 +368,7 @@ public:
|
||||
void run_server(); //<! Starts running the server
|
||||
void stop_server(); //<! Stops the server
|
||||
|
||||
void send_message(const std::string& message); //<! Sends a message through the server to all connected clients
|
||||
void send_message(const std::string& msg); //<! Sends a message through the server to all connected clients
|
||||
bool is_server_running() const; //<! Returns true if the server is running, false otherwise
|
||||
|
||||
private:
|
||||
@@ -440,7 +440,7 @@ private:
|
||||
* \param gnss_synchroL2 Information generated by channels while processing the GLONASS GNAV L2 satellite
|
||||
* \return Returns the message content as set of bits
|
||||
*/
|
||||
std::bitset<107> get_MT1011_sat_content(const Glonass_Gnav_Ephemeris& ephGNAVL1, const Glonass_Gnav_Ephemeris& ephGNAVL2, double obs_time, const Gnss_Synchro& gnss_synchroL1, const Gnss_Synchro& gnss_synchroL2);
|
||||
std::bitset<107> get_MT1011_sat_content(const Glonass_Gnav_Ephemeris& ephL1, const Glonass_Gnav_Ephemeris& ephL2, double obs_time, const Gnss_Synchro& gnss_synchroL1, const Gnss_Synchro& gnss_synchroL2);
|
||||
/*!
|
||||
* \brief Get the contents of the satellite specific portion of a type 1012 Message (GLONASS Extended RTK, L1 & L2)
|
||||
* \details Contents generated for each satellite. See table 3.5-14
|
||||
@@ -452,7 +452,7 @@ private:
|
||||
* \param gnss_synchroL2 Information generated by channels while processing the GLONASS GNAV L2 satellite
|
||||
* \return Returns the message content as set of bits
|
||||
*/
|
||||
std::bitset<130> get_MT1012_sat_content(const Glonass_Gnav_Ephemeris& ephGNAVL1, const Glonass_Gnav_Ephemeris& ephGNAVL2, double obs_time, const Gnss_Synchro& gnss_synchroL1, const Gnss_Synchro& gnss_synchroL2);
|
||||
std::bitset<130> get_MT1012_sat_content(const Glonass_Gnav_Ephemeris& ephL1, const Glonass_Gnav_Ephemeris& ephL2, double obs_time, const Gnss_Synchro& gnss_synchroL1, const Gnss_Synchro& gnss_synchroL2);
|
||||
|
||||
std::string get_MSM_header(uint32_t msg_number,
|
||||
double obs_time,
|
||||
@@ -1413,10 +1413,10 @@ private:
|
||||
int32_t set_DF393(bool more_messages); //1 indicates that more MSMs follow for given physical time and reference station ID
|
||||
|
||||
std::bitset<64> DF394;
|
||||
int32_t set_DF394(const std::map<int32_t, Gnss_Synchro>& observables);
|
||||
int32_t set_DF394(const std::map<int32_t, Gnss_Synchro>& gnss_synchro);
|
||||
|
||||
std::bitset<32> DF395;
|
||||
int32_t set_DF395(const std::map<int32_t, Gnss_Synchro>& observables);
|
||||
int32_t set_DF395(const std::map<int32_t, Gnss_Synchro>& gnss_synchro);
|
||||
|
||||
std::string set_DF396(const std::map<int32_t, Gnss_Synchro>& observables);
|
||||
|
||||
|
Reference in New Issue
Block a user