我正在尝试从传感器和指示器模块获取一些信息,但程序总是崩溃。当我逐步调试时,我从 WFSGetInfo() 得到结果 -48 (WFS_ERR_TIMEOUT),这意味着它已经超时。传感器和指示器注册表项存在,供应商 DLL 也存在。所有其他模块都可以正常打开。知道什么给出了吗?
SIU SPI 版本是 3.02,我使用的是 SPI/XFS 版本 0x0B020003 和 XFS SDK 3.20。这会是问题之一吗?
#include "XFS.h"
#include "XFSSIU.h"
int main()
{
XFS xfs = XFS();
xfs.start();
HRESULT hResult = XFSObj.openSession("SIU");
LPWFSRESULT lpResult = NULL;
HRESULT open_result = NULL;
open_result = WFSGetInfo(xfs.getServiceHandle(), WFS_INF_SIU_STATUS, NULL, 120000, &lpResult);
std::cout << open_result << std::endl;
XFSObj.CloseSession();
return 0;
}