esp_vfs_dev_uart_set_rx_line_endings() function
Set the line endings expected to be received on UART This specifies the conversion between line endings received on UART and newlines ('\n', LF) passed into stdin: - ESP_LINE_ENDINGS_CRLF: convert CRLF to LF - ESP_LINE_ENDINGS_CR: convert CR to LF - ESP_LINE_ENDINGS_LF: no modification
Syntax
void esp_vfs_dev_uart_set_rx_line_endings(esp_line_endings_t mode) __attribute__((deprecated("Please use uart_vfs_dev_port_set_rx_line_endings() instead"))); Arguments
mode
line endings expected on UART
Notes
this function is not thread safe w.r.t. reading from UART