Error handling on system boot #30

Merged
localhorst merged 22 commits from feature/error-handling into main 2026-05-10 12:39:47 +02:00
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];
}