2014-06-29 08:20 AM
Morning, everyone,
I used a demonstration board STEVAL-MKI062V2. I wrote a small C++ program and want to get data from the sensor. It looks like, that some functions are not in the dll file (''iNEMO2_SDK.dll'') .The codes are:
typedef int (WINAPI *DLLPROC_CON)(LPCSTR);
DLLPROC_CON INEMO2_SDK_ConnectFunction; INEMO2_SDK_ConnectFunction=(DLLPROC_CON)GetProcAddress(hinstDLL,''INEMO2_SDK_Connect'');By debugging I found, the function pointer INEMO2_SDK_ConnectFunction did not get a value.
Can someone help me? Does the function INEMO2_SDK_Connect have another name? I read the text ''Wrapper in Visual Studio for the STEVAL-MKI062V1'' and wrote such codes.Best regards
06.29.2014
2014-07-18 07:09 AM