Clean up linefeeds

This commit is contained in:
Nanosonde 2020-11-08 17:59:18 +01:00
parent f5d90949cc
commit 2b74cf2b5e
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ int main(void)
{
// Setup RTT config for debug output
SEGGER_RTT_ConfigUpBuffer(0, NULL, NULL, 0, SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL);
SEGGER_RTT_WriteString(0, "System startup.\r\n");
SEGGER_RTT_WriteString(0, "\r\nSystem startup.\r\n");
// Make sure that compiled objects match the linked SDK library version
DRIVERLIB_ASSERT_CURR_RELEASE();

View File

@ -69,7 +69,7 @@ static void InitNVS()
nvsHandle = NVS_open(Board_NVSINTERNAL, &nvsParams);
if (nvsHandle == NULL)
{
print("NVS_open() failed.\n");
println("NVS_open() failed.");
return;
}