Merge branch 'bugfix/ut_crlf_fix' into 'master'
unit-test-app: Fix incorrect CR+LF sequence See merge request !816
This commit is contained in:
commit
7ea33771c7
1 changed files with 1 additions and 1 deletions
|
@ -23,8 +23,8 @@ void unity_putc(int c)
|
|||
{
|
||||
if (c == '\n')
|
||||
{
|
||||
uart_tx_one_char('\n');
|
||||
uart_tx_one_char('\r');
|
||||
uart_tx_one_char('\n');
|
||||
}
|
||||
else if (c == '\r')
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue