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

@@ -20,7 +20,7 @@ uint8_t SD_init()
cmdAttempts++;
if(cmdAttempts == CMD0_MAX_ATTEMPTS)
{
cputs("Go IDLE\r\n");
cputs("Go IDLE\n");
return SD_ERROR;
}
}
@@ -30,7 +30,7 @@ uint8_t SD_init()
SD_sendIfCond(res);
if(res[0] != SD_IN_IDLE_STATE)
{
cputs("IF Cond\r\n");
cputs("IF Cond\n");
return SD_ERROR;
}
@@ -44,7 +44,7 @@ uint8_t SD_init()
{
if(cmdAttempts == CMD55_MAX_ATTEMPTS)
{
cputs("op_cond error\r\n");
cputs("op_cond error\n");
return SD_ERROR;
}
@@ -304,7 +304,7 @@ void SD_sendStatus(uint8_t *res)
// while(++readAttempts != SD_MAX_READ_ATTEMPTS)
// if((read = spi_exchange(0xFF)) != 0xFF) break;
// cprintf("read attempts: %d\r\n", readAttempts);
// cprintf("read attempts: %d\n", readAttempts);
// // if response token is 0xFE
// if(read == SD_START_TOKEN)

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");
}