I have written a Linux app to read & write binary data to a remote device over a USB port that is emulating a serial port.
When I read data from the device, I have a USB sniffer that shows a binary data stream like this (0x01, 0x0A......0x13), but when my program reads the bytes, the 0x13 is not in the byte stream - this is the XOFF char, but I am not using XON/XOFF flow control (I think).
Tried both open read and write, as well as fopen fread and fwrite in binary mode, same result. Any ideas?
Thanks for any responses, like the website. Turns out stty showed:
Even though it looked like flow control was off, The solution was to use cfmakeraw settings to see ALL characters and ignore nothing.
cfmakeraw() sets the terminal to something like the "raw" mode of the old Version 7 terminal driver: input is available character by character, echoing is disabled, and all special processing of terminal input and output characters is disabled. The terminal attributes are set as follows:
Can see all my data now :)