# HG changeset patch # User Josef 'Jeff' Sipek # Date 1721044816 14400 # Mon Jul 15 08:00:16 2024 -0400 # Node ID bd4d46f389648014a12a38f580fd875e5cf0bfcc # Parent e968936fb567c970ce1f9338f3e9217dc612463c arch: usart_tx_flash_str should use CRLF instead of just LF At the end of the string, we should generate CRLF instead of just LF to properly repositition the terminal cursor at the beginning of the next line. Signed-off-by: Josef 'Jeff' Sipek diff --git a/arch/atmega48p_usart.h b/arch/atmega48p_usart.h --- a/arch/atmega48p_usart.h +++ b/arch/atmega48p_usart.h @@ -49,6 +49,7 @@ ptr++; } + usart_tx_byte('\r'); usart_tx_byte('\n'); }