Disable CR/LF translation by default.

With the change to use the IDF's stdin to feed the Lua VM, the default
IDF CR/LF translation appears to cause issues with some IDEs.
This commit is contained in:
Jade Mattsson 2024-05-12 20:00:24 +10:00 committed by Jade Mattsson
parent 53da95b5ae
commit 3203eba815
1 changed files with 4 additions and 0 deletions

View File

@ -32,3 +32,7 @@ CONFIG_LWIP_TCP_MSL=5000
# Disable esp-idf's bluetooth component by default. # Disable esp-idf's bluetooth component by default.
# The bthci module is also disabled and will enable bt when selected # The bthci module is also disabled and will enable bt when selected
CONFIG_BT_ENABLED=n CONFIG_BT_ENABLED=n
# Disable CR/LF translation, for legacy compatibility
CONFIG_NEWLIB_STDIN_LINE_ENDING_LF=y
CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF=y