[][src]Function mraa_sys::mraa_spi_write_buf_word

pub unsafe extern "C" fn mraa_spi_write_buf_word(
    dev: mraa_spi_context,
    data: *mut u16,
    length: c_int
) -> *mut u16

Write Buffer of uint16 to the SPI device. The pointer return has to be free'd by the caller. It will return a NULL pointer in cases of error.

@param dev The Spi context @param data to send @param length elements (in bytes) within buffer, Max 4096 @return Data received on the miso line, same length as passed in