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
mehrere interfaces ansprechen
Forumsregeln
Bitte beachte die Forumsregeln!
Bitte beachte die Forumsregeln!
Re: mehrere interfaces ansprechen
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.
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
Thank you for your input...