Serial cable vs USB-to-serial adapter

0

I have a device with RS-232 and a control program on PC. It works fine via serial cable but with usb-to-serial some functions don't work correctly.

Why usb-to-serial doesn't work?

I tried to change Tx and Rx and install official drivers for this adapter, but it didn't help. Also, I tried serial port monitor - on the face of it, everything is equally between serial port and adapter.

spyder

Posted 2013-01-26T11:57:54.437

Reputation: 103

Answers

1

USB->Serial adaptors have a higher latency due to the way data has to be batched up and sent in packets over the USB. For most things that just stream bulk data, this doesn't matter, but some control processes expect to be able to write a byte and get back a response very quickly, so they don't work.

psusi

Posted 2013-01-26T11:57:54.437

Reputation: 7 195

Any workaround there? – jsbueno – 2014-12-15T14:53:18.847

@jsbueno, nope. – psusi – 2014-12-15T15:40:29.593