Remove unneeded CR

This commit is contained in:
Byron Lathi
2023-09-27 23:03:22 -07:00
parent 4925354f53
commit 85f53816f9
8 changed files with 49 additions and 49 deletions

View File

@@ -13,7 +13,7 @@ void SD_printBuf(uint8_t *buf)
cprintf("%2x", *buf++);
if(colCount == 31)
{
cputs("\r\n");
cputs("\n");
colCount = 0;
}
else
@@ -22,5 +22,5 @@ void SD_printBuf(uint8_t *buf)
colCount++;
}
}
cputs("\r\n");
cputs("\n");
}