eclipse / mraa

Linux Library for low speed IO Communication in C with bindings for C++, Python, Node.js & Java. Supports generic io platforms, as well as Intel Edison, Intel Joule, Raspberry Pi and many more.

Home Page:http://mraa.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mraa_uart_set_flowcontrol(): rogue XOFF byte

ric96 opened this issue · comments

HI,
I am trying to setup uart on a DragonBoard410c, and I've set flow-control to off. but as soon as I call mraa_uart_set_flowcontrol() it sends a XOFF byte on the tx line.

unsigned int ctsrts = 0, xonxoff = 0;
status = mraa_uart_set_flowcontrol(uart, xonxoff, ctsrts);
    if (status != MRAA_SUCCESS) {
        goto err_exit;
    }