]> granicus.if.org Git - esp-idf/commit
Merge branch 'feature/vfs_uart_read' into 'master'
authorIvan Grokhotkov <ivan@espressif.com>
Mon, 16 Jan 2017 04:08:22 +0000 (12:08 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Mon, 16 Jan 2017 04:08:22 +0000 (12:08 +0800)
commit455bb4271e1b7b983720cef0041fc1ddd58ff62e
treec234f271c10b75698235223c01e366a25c14e8cb
parent7f751fd0fea9f4c21e441e40af185f8981d381ae
parent0d00a1ba01fd5a774e4da65970a88c535585ebb2
Merge branch 'feature/vfs_uart_read' into 'master'

vfs: implement reading from UART

This change adds support for reading from the UART FIFO via the `stdin`.

Useful for simple cases when handling lots of data is not a requirement (e.g. command prompts operated by humans).

`\r\n` -> `\n` conversion is guided by the existing `CONFIG_NEWLIB_STDOUT_ADDCR` configuration option.

See merge request !393