FTDI USB->Serial and Wine

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
ladaan
Newbie
Newbie
Posts: 3
Joined: Mon Nov 10, 2008 7:53 am

FTDI USB->Serial and Wine

Post by ladaan »

I've got USB->Serial converter:

Code: Select all

Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC
and I need communicate with this converter to devices(Kirk) via specific Kirk windows software.
I have mapped converter:

Code: Select all

ln -s /dev/ttyUSB0 com1
but I can't connect to it. If I connect the Kirk device directly through mapped /dev/ttyS0, the device get connected.
Any idea how I could debug USB->serial in wine or do you think it is wine related issue?

Thanks.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

FTDI USB->Serial a Wine

Post by austin987 »

On Mon, Nov 10, 2008 at 7:06 AM, ladaan <[email protected]> wrote:
I've got USB->Serial converter:


Code:
Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC


and I need communicate with this converter to devices(Kirk) via specific Kirk windows software.
I have mapped converter:

Code:
ln -s /dev/ttyUSB0 com1


but I can't connect to it. If I connect the Kirk device directly through mapped /dev/ttyS0, the device get connected.
Any idea how I could debug USB->serial in wine or do you think it is wine related issue?

Thanks.





Does it work in native Linux apps? Wine can't communicate if your
native OS doesn't have the drivers for it.

--
-Austin
ladaan
Newbie
Newbie
Posts: 3
Joined: Mon Nov 10, 2008 7:53 am

Re: FTDI USB->Serial a Wine

Post by ladaan »

Does it work in native Linux apps? Wine can't communicate if your
native OS doesn't have the drivers for it.
Yes, it does work. I can connect to serial port at Mikrotik RouterBoard through minicom with this USB->serial converter for example. There is no problem with the linux driver(kernel module). The driver is included in the kernel(2.6.24) already.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: FTDI USB->Serial a Wine

Post by vitamin »

ladaan wrote:
Does it work in native Linux apps? Wine can't communicate if your
native OS doesn't have the drivers for it.
Yes, it does work. I can connect to serial port at Mikrotik RouterBoard through minicom with this USB->serial converter for example. There is no problem with the linux driver(kernel module). The driver is included in the kernel(2.6.24) already.
It could be one of those cases where Wine doesn't work with USB->serial ports: http://bugs.winehq.org/show_bug.cgi?id=8783
ladaan
Newbie
Newbie
Posts: 3
Joined: Mon Nov 10, 2008 7:53 am

Re: FTDI USB->Serial a Wine

Post by ladaan »

It could be one of those cases where Wine doesn't work with USB->serial ports: http://bugs.winehq.org/show_bug.cgi?id=8783
Thanks for pointing at the link. Actually, it is the case I have.
Locked