??? 05/26/13 23:18 Read: times Msg Score: +2 +2 Good Answer/Helpful |
#189802 - Not Awways the USB Converter's Fault Responding to: ???'s previous message |
Non working serial port interfaces in software that fails with USB to Serial Converter cables is often not the fault of the USB serial device or it's OS drivers. Many old time programs written for use with the serial ports in a PC were written with direct access to the COM port I/O addresses and interrupt vectors. There are a slew of these old programs still in use even today and is one of the reasons that Microsoft in particular has mapped the COM port register addresses as still accessible from user program space!
Newer and more smartly written software that uses the OS API to open and access serial port devices, whether they be the old legacy COM1 to COM4 hardware supported devices, virtual COM ports mapped through to USB serial cables or virtual ports offered by drivers to devices such as Blue Tooth radios, GPS units or cell phone interfaces will stand a much better chance of working properly with non legacy hardware. Michael Karas |