Skip to content
Snippets Groups Projects
Commit 0f74f458 authored by nrs1g15's avatar nrs1g15
Browse files

<= should be >=

parent da43b4ee
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ void sdProcess() ...@@ -56,7 +56,7 @@ void sdProcess()
sdWritesCntBeforeFlush++; sdWritesCntBeforeFlush++;
if (sdWritesCntBeforeFlush <= SD_WRITES_BEFORE_FLUSH) { if (sdWritesCntBeforeFlush >= SD_WRITES_BEFORE_FLUSH) {
file.flush(); file.flush();
sdWritesCntBeforeFlush = 0; sdWritesCntBeforeFlush = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment