esp_vfs_dev_uart_set_tx_line_endings() function
Set the line endings to sent to UART This specifies the conversion between newlines ('\n', LF) on stdout and line endings sent over UART: - ESP_LINE_ENDINGS_CRLF: convert LF to CRLF - ESP_LINE_ENDINGS_CR: convert LF to CR - ESP_LINE_ENDINGS_LF: no modification
Syntax
void esp_vfs_dev_uart_set_tx_line_endings(esp_line_endings_t mode) __attribute__((deprecated("Please use uart_vfs_dev_port_set_tx_line_endings() instead"))); Arguments
mode
line endings to send to UART
Notes
this function is not thread safe w.r.t. writing to UART