12-04-2006 05:30 PM
typedef enum {
LKIF_FLOATRESULT_VALID, // valid data
LKIF_FLOATRESULT_RANGEOVER_N, // over range at negative (-) side
LKIF_FLOATRESULT_WAITING, // comparator result
} LKIF_FLOATRESULT;
typedef struct {
LKIF_FLOATRESULT FloatResult; // valid or invalid data.
float Value; // measurement value during LKIF_FLOATRESULT_VALID.
Any other times will return an invalid value.
} LKIF_FLOATVALUE;
I looked through "Labview for everyone" and get me familiar with CIN, but it has a simple example with sinple argument. Can anyone tell me how to setup the input for this DLL? Should I make a cluster? Any help will be appreciated.
sipher
12-05-2006 02:27 AM