12-06-2007 08:13 AM
12-07-2007 04:40 AM
12-07-2007 05:02 AM
12-07-2007 09:33 AM
12-10-2007 09:23 AM
I must load the entire LabVIEW Run-time Engine on my system: it's the only way to have my application working; but this requires some MB of disk and of RAM.
@Shawn B. wrote:
if you don't have enough memory/disk space to load the VISA Run-time Engine, are you going to have enough memory/disk space to load the LabVIEW Run-time Engine? I would guess not.
do you mean is there a *.so library containing the functions I need? or should I write a library by myself?
you could always use Call Library Nodes in LabVIEW to interface directly with the C library
12-10-2007 10:31 AM
Well, that depends on exactly what you want to do. If you only need to call a couple of C functions you can probably use libc.so directly. If you want to do something more complex you may want to write your own library in C and then simple call your library to minimize the number of Call Library Nodes you have to use. Check out the link from my previous post, and/or take a look at "man termios"
@vix wrote:do you mean is there a *.so library containing the functions I need? or should I write a library by myself?
12-12-2007 05:10 AM