mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
examples: don't enable buffering on stdout in console examples
newlib uses significantly more stack space when printing to an unbuffered stream. To reduce the amount of stack space required to use the console, don’t disable buffering. linenoise should support unbuffered stdout instead.
This commit is contained in:
parent
cb5c0d3a12
commit
6600250f30
@ -59,9 +59,8 @@ static void initialize_nvs()
|
||||
|
||||
static void initialize_console()
|
||||
{
|
||||
/* Disable buffering on stdin and stdout */
|
||||
/* Disable buffering on stdin */
|
||||
setvbuf(stdin, NULL, _IONBF, 0);
|
||||
setvbuf(stdout, NULL, _IONBF, 0);
|
||||
|
||||
/* Minicom, screen, idf_monitor send CR when ENTER key is pressed */
|
||||
esp_vfs_dev_uart_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
|
||||
|
@ -28,9 +28,8 @@
|
||||
|
||||
static void initialize_console()
|
||||
{
|
||||
/* Disable buffering on stdin and stdout */
|
||||
/* Disable buffering on stdin */
|
||||
setvbuf(stdin, NULL, _IONBF, 0);
|
||||
setvbuf(stdout, NULL, _IONBF, 0);
|
||||
|
||||
/* Minicom, screen, idf_monitor send CR when ENTER key is pressed */
|
||||
esp_vfs_dev_uart_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
|
||||
|
Loading…
Reference in New Issue
Block a user