Search found 6 matches

by Lucie
Fri Feb 05, 2010 2:40 pm
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Re: Building my own driver

Hello, Sorry for that, I finally found what to do to add a new library ! Here is my code : [size=85]IF(UNIX) FIND_LIBRARY(gMOBIlabplus_LIBRARY NAMES gMOBIlabplus PATH /usr/lib /usr/local/lib) IF (gMOBIlabplus_LIBRARY) SET(gMOBIlabplus_FOUND TRUE) ELSE(gMOBIlabplus_LIBRARY) MESSAGE(STATUS " [FAILED] ...
by Lucie
Fri Feb 05, 2010 1:52 pm
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Re: Building my own driver

Hello,

I have a problem during the link edition : I have to use an external library which is located in /usr/lib/gMOBIlabplus.so and I don't know how to make the linker find it. I suppose that I have to modify the Cmake file but I don't know how.

Thanks for your help,
Lucie
by Lucie
Fri Feb 05, 2010 10:27 am
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Re: Building my own driver

Good morning, It looks like the documentation disagrees with the code of the other drivers. I assume that the code of the other drivers is correct. Indeed, doing as in the documentation leads to a failure when compiling and a grep on all the source files for OpenViBEAcquisitionServer::boolean return...
by Lucie
Thu Feb 04, 2010 4:16 pm
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Re: Building my own driver

Thank you, it works ! I just compiled a dummy driver which is the Generic oscillator with another name. I can see it in the pop up list when I use the acquisition server. I just have to write the actual code :wink: I am trying to write a driver for a gTec product : the gMOBIlab+. Is there a way to r...
by Lucie
Thu Feb 04, 2010 2:51 pm
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Re: Building my own driver

Thanks !

I am on Linux, I will try to adapt this solution and post an update soon.
by Lucie
Thu Feb 04, 2010 11:16 am
Forum: Driver development
Topic: Building my own driver
Replies: 13
Views: 28209

Building my own driver

Hello, I would like to create a new driver. The documentation is clear, except for one thing : how can I use the driver I write ? To be more precise, I don't know how to compile the c++ code and make the Acquisition server recognise it. Could you please either explain it to me or point me to the par...