pub unsafe extern "C" fn esp_vfs_dev_usb_serial_jtag_set_rx_line_endings(
    mode: esp_line_endings_t
)
Expand description

@brief Set the line endings expected to be received

This specifies the conversion between line endings received 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

@note this function is not thread safe w.r.t. reading

@param mode line endings expected