Skip to content Skip to sidebar Skip to footer

Unable To Open A Connection With A Ftd 232 Device

I am trying to open a connection and pass a value for a given channel In order to do this I need to open a connection to the enttec open dmx usb. But I am unable to create a connec

Solution 1:

To the best of my knowledge the VCP driver is loaded by default for non windows systems (or if the EEPROM is flashed accordingly). Chances are that you have to unload the VCP first to enable the D2XX driver. To check if this is the case for you, you can try to start one of the examples provided by ftdi. Furthermore you could try to address the device not by SN but by port number.

If the VCP is the problem, it can be removed via "sudo rmmod ftdi_sio". Sometimes an additional "sudo rmmod usbserial" is required.

Some alternative solutions and approaches are discussed here

EDIT:

An alternative might be sticking with the VCP driver and just opening it via e.g. pyserial. If I see it correctly the device you want to interface actually has a RS485 with BaudRate = 250000, PARITY_NONE, STOP_BITS_2, BITS_8 according to the code example they provide. So a long as no special GPIO access is required, you might be good. But chances are that you might have problems with opening the VCP as well and that you have to fix a driver problem first. Sadly I am not an expert in this field...

Post a Comment for "Unable To Open A Connection With A Ftd 232 Device"