mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
unit-test-app: Fix incorrect CR+LF sequence.
This caused problems with handling output by grep, sed, etc
This commit is contained in:
@@ -23,8 +23,8 @@ void unity_putc(int c)
|
|||||||
{
|
{
|
||||||
if (c == '\n')
|
if (c == '\n')
|
||||||
{
|
{
|
||||||
uart_tx_one_char('\n');
|
|
||||||
uart_tx_one_char('\r');
|
uart_tx_one_char('\r');
|
||||||
|
uart_tx_one_char('\n');
|
||||||
}
|
}
|
||||||
else if (c == '\r')
|
else if (c == '\r')
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user