boot_serial: Remove unneeded carriage return at the end of frame

The correct end of SMP frame, over console, is single '\n'.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
This commit is contained in:
Dominik Ermel 2022-03-03 12:39:27 +00:00 committed by Andrzej Puzdrowski
parent 5bd8744e89
commit 2f2b31cb90
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ boot_serial_output(void)
totlen = base64_encode(buf, totlen, encoded_buf, 1);
#endif
boot_uf->write(encoded_buf, totlen);
boot_uf->write("\n\r", 2);
boot_uf->write("\n", 1);
BOOT_LOG_INF("TX");
}