Home | History | Annotate | Download | only in mraa

Lines Matching defs:read

100      * Read bytes from the device into char* buffer
104 * @return numbers of bytes read
107 read(char* data, int length)
126 * Read bytes from the device into a String object
128 * @param length to read
158 * @return true if there is data available to read, false otherwise
225 * Set the timeout for read and write operations
228 * @param read read timeout
234 setTimeout(int read, int write, int interchar)
236 return (Result) mraa_uart_set_timeout(m_uart, read, write, interchar);