Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
3k views

How to increase performance of memcpy

Summary: memcpy seems unable to transfer over 2GB/sec on my system in a real or test application. What can I do to get faster memory-to-memory copies? Full details: As part of a data capture ...
3
votes
6answers
322 views

How can i catch a runtime error in ansi C90

I am using the library Function ConnectToTCPServer. This function times out when the host is not reachable. In that case the application crashes with the following error: "NON-FATAL RUN-TIME ERROR: ...
2
votes
2answers
413 views

What could cause a Labwindows/CVI C program to hate the number 2573?

Using Windows So I'm reading from a binary file a list of unsigned int data values. The file contains a number of datasets listed sequentially. Here's the function to read a single dataset from a ...
2
votes
1answer
562 views

NI CVI with Python

I'd like to integrate a Python IDLE-esque command prompt interface into an existing NI-CVI (LabWindows) application. I've tried to follow the Python.org discussions but seem to get lost in the ...
1
vote
1answer
61 views

How to create a Distribtion Kit via the Command Line with CVI/Labview

I've got a NI CVI/Labview project that compiles by using the compile.exe command on the commandline. This generates the expected executables and runs fine on the development PC. However I'd also like ...
1
vote
2answers
612 views

How can you examine lib files?

I have a List of 390 Libraries and need to port a software from lab CVI to Visual C. Those dependencies are killing me. I cant import all of them, that would be overkill - and not all of them are ...
1
vote
1answer
85 views

What Testframeworks are available for NI Lab Windows CVI?

I am forced to use NI Lab Windows CVI, and i would love work with TDD. However i could not find any testframeworks for that IDE. Are there any known solutions?
1
vote
1answer
67 views

How to detect Windows XP or Windows 2000 OS to run a CVI executable

I am using NI LabWindows CVI 8.1 to compile and build a executable program which I need to run on either Windows XP and Windows 2000 OS. I use Windows XP to compile and build the executable. The info ...
1
vote
1answer
439 views

Does anyone have experience with National Instruments CVI and source control?

I'm using NI's Labwindows CVI and i'm trying to integrate source control, supposably it plays well with anything that fits the MS API, (MSSCC/SCC) but I haven't found this to be the case in practice. ...
0
votes
2answers
202 views

How can i pass a va_list through a function in C90

I want to pass a va_list through to another function. Here is an example of what i am trying to do: void my_printf_1(char* string, ...){ va_list ap; va_start (ap, string); ...
0
votes
3answers
163 views

How can i access directories in C90 without dirent.h?

i am working in LabCVI on the basis of C90. The tanks at hand would be to find the absolute paths of "*.spec" files in the "..\data"" directory and subdirectories. I am aware that there are ...
0
votes
2answers
148 views

Linker Error LNK2019 traced back to an __stdcall i think i got the right lib - what can i do to resolve this?

I try to port a LabCVI Projekt to MSVS 2010 C++ Express. There is a line of code wich reads like this: if (InitCVIRTE == 0) return 0; A Linker Error occurs: LNK2019 "_InitCVIRTEEx@12" - all ...
0
votes
1answer
303 views

Sending ATD command to a Fastrack Supreme via RS232 in LabWindows/CVI

I work on project based on a FASTRACK SUPREME which has to receive commands via a serial RS232. The problem is: When I use HyperTerm the command ATDxxxxxxxxx; works fine. When I use the CVI RS232 ...