GPIB 与 Qt 接口
我想知道是否可以使用 C++ 和 Qt 与 GPIB 仪器接口。如果可能的话,有人可以告诉我它有多容易和/或为我指明教程或示例的方向吗?
多谢。
I was wondering if it is possible to interface with GPIB Instruments by using C++ and Qt. If it is possible, can anyone tell me how easy it would be and/or point me in a direction for a tutorial or examples?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这应该是可能的。该包的一部分应该是用于 C 程序的 488.2 API,您也可以在 C++ 和/或 Qt 程序中使用它。如果头文件中没有这样的行,您可能必须将头文件包装在 extern "C" 中。
Yes, it should be possible. Part of the package should be a 488.2 API for C programs, which you can also use from a C++ and/or Qt program. You may have to wrap the header file in extern "C", if there is no such line in the header file.