RS485 missing received data
Posted: Wed Feb 08, 2012 7:19 pm
I am waiting for received data on the RS485 interface using the following loop
do {
rxDataLen = sub_rs_xfer(m_hRadioComPort, (char*) txDataBuf, 0, (char*) rxDataBuf, 15);
} while (rxDataLen == 0);
and am finding that some data is sometimes lost in the interval between sub_rs_xfer timing out and being called again.
The fifo is not available to use with the RS485 interface, and there does not seem to be any way to tell sub_rs_xfer not to time out.
Has anyone else seen this problem, and are they aware of any solution?
do {
rxDataLen = sub_rs_xfer(m_hRadioComPort, (char*) txDataBuf, 0, (char*) rxDataBuf, 15);
} while (rxDataLen == 0);
and am finding that some data is sometimes lost in the interval between sub_rs_xfer timing out and being called again.
The fifo is not available to use with the RS485 interface, and there does not seem to be any way to tell sub_rs_xfer not to time out.
Has anyone else seen this problem, and are they aware of any solution?