Seite 1 von 1

mehrere interfaces ansprechen

Verfasst: 28 Okt 2013, 18:36
von MacMarkus
Hallo zusammen,

ich überlege gerade, ob es möglich ist, entweder unter roboPro oder per javafish mehrere Interfaces anzusprechen (also nicht zusammenstecken, sondern quasi nebeneinander betreiben).

a) robo interface mit i/o extension sollte ja kein Problem darstel

b)robo interface und TX controller

c) i/o extension und TX controller

Danke im Voraus
Markus

Re: mehrere interfaces ansprechen

Verfasst: 28 Okt 2013, 23:00
von vleeuwen
Yes, the FtLib.dll is re-entrant. (The FtMscLib is not)
The only need is that the interface can have its proper USB sub ID; this is the case with the Robo Interface. (you can set this sub ID with RoboPro).
I am only not completely sure if this is also the case for the Robo I/O extension.
I make use of this fact in Ft16Service interface to integrated the Robo Interface into the MS-RDS system.
At C++ level (class level) you probably will need to make use of the context parameter.

I am not familiar with the details of Java JNI connection interface for the FtLib.

Re: mehrere interfaces ansprechen

Verfasst: 29 Okt 2013, 12:59
von MacMarkus
Thank you for your input...