Commit 2f2b31cb authored by Dominik Ermel's avatar Dominik Ermel Committed by Andrzej Puzdrowski
Browse files

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: default avatarDominik Ermel <dominik.ermel@nordicsemi.no>
parent 5bd8744e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
}