Relocate the configuration values #29

Open
localhorst wants to merge 18 commits from feature/config into main
Showing only changes of commit 0775fda0ca - Show all commits
+1 -1
View File
@@ -122,7 +122,7 @@ void updateAverage(sMeasurement *pMeasurement)
}
float sum = 0.0;
for (int i = 0; i <= pMeasurement->average10s.bufferCount; i++)
for (int i = 0; i < pMeasurement->average10s.bufferCount; i++)
{
sum += pMeasurement->average10s.samples[i];
}