LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Can anyone help me to resolve these error in LabVIEW PDA module

These are the errors that i have encountered when i am programming in my LabVIEW PDA module.
 
_GetConfFormate is a missing VI or C file
_GetConfState is a missing VI or C file
_SIConfigure is a missing VI or C file
 
Can anyone solve these error?
Message 1 of 6
(2,981 Views)

Hi student G

THere have been arrors posted that have to do with a localized decimal point, but
it doesn't seam that it is in your case.

Am I right if I considder that you are trying to use C code in ypor project?
If this is correct then I would recommand to try to write a very simple example.
This could be something like:

int func (int a,b)
{
    return (a+b);
}

This is a primitive example but you can try to add it into your project.
If you can compile your project with this call library function than
you have configured your project correctly.
Once everything works in this pwimitive way you can enhance the
C file and try out where the mistake in your code is.
In many cases the C code is correctly enough for visual C++ but
it itn't correct enough for the C compiler that is behind the PDA
toolkit. The failur output from LV is in many cases not worth to have
a look at it, bcause it doesnt help you in any way. The failure can
be caused by another instance too.
The

With kind regards

Martin Kunze

KDI Digital Instrumentation.com
e-mail: martin.kunze@digital-instrumentation.com
Tel: +49 (0)441 9490852
0 Kudos
Message 2 of 6
(2,956 Views)

Hi student G

THere have been arrors posted that have to do with a localized decimal point, but
it doesn't seam that it is in your case.

Am I right if I considder that you are trying to use C code in ypor project?
If this is correct then I would recommand to try to write a very simple example.
This could be something like:

int func (int a,b)
{
    return (a+b);
}

This is a primitive example but you can try to add it into your project.
If you can compile your project with this call library function than
you have configured your project correctly.
Once everything works in this pwimitive way you can enhance the
C file and try out where the mistake in your code is.
In many cases the C code is correctly enough for visual C++ but
it itn't correct enough for the C compiler that is behind the PDA
toolkit. The failur output from LV is in many cases not worth to have
a look at it, bcause it doesnt help you in any way. The failure can
be caused by another instance too.
The best

With kind regards

Martin Kunze

KDI Digital Instrumentation.com
e-mail: martin.kunze@digital-instrumentation.com
Tel: +49 (0)441 9490852
0 Kudos
Message 3 of 6
(2,956 Views)

 Hi there

Do you know where to put this C language which you suggested? Like in which part of LabVIEW. Thank you for your quick respond.

0 Kudos
Message 4 of 6
(2,944 Views)

Hi Student G,

Are you using a C DLL like Martin hypothesized?  If so, this KB should help you successfully include the code:  LabVIEW PDA Module Build Errors with VIs that Call DLLs.

Hope this helps!
Megan B
National Instruments

0 Kudos
Message 5 of 6
(2,924 Views)
thanks i will try it out
0 Kudos
Message 6 of 6
(2,906 Views)