there are several bugs? in this:
Code: Select all
ets_printf("Test 1 \n");
ets_printf("Test 2 \r");
ets_printf("Test 3 \r\n");
ets_printf("Test 4 \n\r");
output:
Test 1 <\r><\n>
Test 2
Test 3 <\r><\n>
Test 4 <\r><\n>
ets_printf
\n makes \r\n
\r makes nothing
--------------------------------
Code: Select all
printf("Test 5 \n");
printf("Test 6 \r");
printf("Test 7 \r\n");
printf("Test 8 \n\r");
Test 5 <\r><\n>
Test 6 <\r>
Test 7 <\r><\r><\n>
Test 8 <\r><\n><\r>
printf
\n makes \r\n
\r\n makes \r\r\n
\n\r makes \r\n\r
yes add me to the bug bountry programm
best wishes
rudi