Skip to content
Snippets Groups Projects
Commit 0acffb5c authored by Federico Mandelli's avatar Federico Mandelli Committed by Federico Mandelli
Browse files

[Codebase] Fixed functions names to follow naming guidelines

parent 16f33d27
Branches
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ WindEstimation::WindEstimation() : running(false), calRunning(false)
#ifdef PRF_TEST
BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationSchemeCalibration, this), 100);
std::bind(&WindEstimation::windEstimationSchemeCalibration, this), 100);
// Register the WES task
BoardScheduler::getInstance().getScheduler().addTask(
......@@ -51,12 +51,12 @@ WindEstimation::WindEstimation() : running(false), calRunning(false)
#else
BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationSchemeCalibration, this),
std::bind(&WindEstimation::windEstimationSchemeCalibration, this),
WES_CALIBRATION_UPDATE_PERIOD);
// Register the WES task
BoardScheduler::getInstance().getScheduler().addTask(
std::bind(&WindEstimation::WindEstimationScheme, this),
std::bind(&WindEstimation::windEstimationScheme, this),
WES_PREDICTION_UPDATE_PERIOD);
#endif
}
......@@ -97,7 +97,7 @@ void WindEstimation::stopWindEstimationSchemeCalibration()
logStatus();
}
void WindEstimation::WindEstimationSchemeCalibration()
void WindEstimation::windEstimationSchemeCalibration()
{
if (calRunning)
......@@ -175,7 +175,7 @@ void WindEstimation::stoptWindEstimationScheme()
}
}
void WindEstimation::WindEstimationScheme()
void WindEstimation::windEstimationScheme()
{
if (running)
{
......
......@@ -87,12 +87,12 @@ private:
* @brief Creates the windCalibration matrix with the starting prediction
* value
*/
void WindEstimationSchemeCalibration();
void windEstimationSchemeCalibration();
/**
* @brief Updates the wind matrix with the updated wind prediction values
*/
void WindEstimationScheme();
void windEstimationScheme();
/**
* @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