mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 19:54:32 +02:00
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:
@@ -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')
|
||||
{
|
||||
|
Reference in New Issue
Block a user