mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
change(newlib): use a general console name in the new line conversion options
Currently, the new line ending conversion options for stdin and stdout are specifically described for UART, which is inaccurate since the console could be connected to USB serial/CDC or have secondary output. Use a generic console term instead of UART. Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
menu "Newlib"
|
menu "Newlib"
|
||||||
|
|
||||||
choice NEWLIB_STDOUT_LINE_ENDING
|
choice NEWLIB_STDOUT_LINE_ENDING
|
||||||
prompt "Line ending for UART output"
|
prompt "Line ending for console output"
|
||||||
default NEWLIB_STDOUT_LINE_ENDING_CRLF
|
default NEWLIB_STDOUT_LINE_ENDING_CRLF
|
||||||
depends on VFS_SUPPORT_IO
|
depends on VFS_SUPPORT_IO
|
||||||
help
|
help
|
||||||
This option allows configuring the desired line endings sent to UART
|
This option allows configuring the desired line endings sent to console
|
||||||
when a newline ('\n', LF) appears on stdout.
|
when a newline ('\n', LF) appears on stdout.
|
||||||
Three options are possible:
|
Three options are possible:
|
||||||
|
|
||||||
@@ -26,11 +26,11 @@ menu "Newlib"
|
|||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
choice NEWLIB_STDIN_LINE_ENDING
|
choice NEWLIB_STDIN_LINE_ENDING
|
||||||
prompt "Line ending for UART input"
|
prompt "Line ending for console input"
|
||||||
default NEWLIB_STDIN_LINE_ENDING_CR
|
default NEWLIB_STDIN_LINE_ENDING_CR
|
||||||
depends on VFS_SUPPORT_IO
|
depends on VFS_SUPPORT_IO
|
||||||
help
|
help
|
||||||
This option allows configuring which input sequence on UART produces
|
This option allows configuring which input sequence on console produces
|
||||||
a newline ('\n', LF) on stdin.
|
a newline ('\n', LF) on stdin.
|
||||||
Three options are possible:
|
Three options are possible:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user