mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
a257812e14
esp_stdio contains everything the old esp_vfs_console contained (the vfs stdio glue layer) as well as other functionality related to stdio (previously referred to as console)
26 lines
390 B
C
26 lines
390 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Line ending settings
|
|
*/
|
|
typedef enum {
|
|
ESP_LINE_ENDINGS_CRLF,//!< CR + LF
|
|
ESP_LINE_ENDINGS_CR, //!< CR
|
|
ESP_LINE_ENDINGS_LF, //!< LF
|
|
} esp_line_endings_t;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|