Skip to content
Snippets Groups Projects
Commit 92898c51 authored by Federico Mandelli's avatar Federico Mandelli
Browse files

[Codebase] Fixed functions names to follow naming guidelines

parent 8d0b0fdc
Branches
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ WindEstimation::WindEstimation() : running(false), calRunning(false) ...@@ -43,7 +43,7 @@ WindEstimation::WindEstimation() : running(false), calRunning(false)
#ifdef PRF_TEST #ifdef PRF_TEST
BoardScheduler::getInstance().getScheduler().addTask( BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationSchemeCalibration, this), 100); std::bind(&WindEstimation::windEstimationSchemeCalibration, this), 100);
// Register the WES task // Register the WES task
BoardScheduler::getInstance().getScheduler().addTask( BoardScheduler::getInstance().getScheduler().addTask(
...@@ -51,12 +51,12 @@ WindEstimation::WindEstimation() : running(false), calRunning(false) ...@@ -51,12 +51,12 @@ WindEstimation::WindEstimation() : running(false), calRunning(false)
#else #else
BoardScheduler::getInstance().getScheduler().addTask( BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationSchemeCalibration, this), std::bind(&WindEstimation::windEstimationSchemeCalibration, this),
WES_CALIBRATION_UPDATE_PERIOD); WES_CALIBRATION_UPDATE_PERIOD);
// Register the WES task // Register the WES task
BoardScheduler::getInstance().getScheduler().addTask( BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationScheme, this), std::bind(&WindEstimation::windEstimationScheme, this),
WES_PREDICTION_UPDATE_PERIOD); WES_PREDICTION_UPDATE_PERIOD);
#endif #endif
} }
...@@ -97,7 +97,7 @@ void WindEstimation::stopWindEstimationSchemeCalibration() ...@@ -97,7 +97,7 @@ void WindEstimation::stopWindEstimationSchemeCalibration()
logStatus(); logStatus();
} }
void WindEstimation::WindEstimationSchemeCalibration() void WindEstimation::windEstimationSchemeCalibration()
{ {
if (calRunning) if (calRunning)
...@@ -175,7 +175,7 @@ void WindEstimation::stoptWindEstimationScheme() ...@@ -175,7 +175,7 @@ void WindEstimation::stoptWindEstimationScheme()
} }
} }
void WindEstimation::WindEstimationScheme() void WindEstimation::windEstimationScheme()
{ {
if (running) if (running)
{ {
......
...@@ -87,12 +87,12 @@ private: ...@@ -87,12 +87,12 @@ private:
* @brief Creates the windCalibration matrix with the starting prediction * @brief Creates the windCalibration matrix with the starting prediction
* value * value
*/ */
void WindEstimationSchemeCalibration(); void windEstimationSchemeCalibration();
/** /**
* @brief Updates the wind matrix with the updated wind prediction values * @brief Updates the wind matrix with the updated wind prediction values
*/ */
void WindEstimationScheme(); void windEstimationScheme();
/** /**
* @brief Parameters needed for calibration * @brief Parameters needed for calibration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment