LABWINDOWS 和 dSPACE(MRET) 之间的接口
我必须在 dSPACE(MRET) 和 Labwindows CVI 之间建立一个接口以实现测试自动化。我的所有测试脚本都已在 Labwindows 中,我想在 dSPACE 中运行它。你们中的任何人都可以告诉我如何使用某些 DLL 文件或任何其他方式进行此接口吗?
我怀疑 dSPACE 从未向 Labwindows 提供任何接口 DLL。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题很模糊,更具体的信息将有助于获得更具体的答案。
关于
他们可能会,
LabWindows/CVI 应该能够链接和构建任何 C 兼容 API。如果有头文件,您甚至可以保证 COFF 兼容(和 CVI 兼容).lib 文件,以使事情变得更容易。 此处解释了如何从具有关联 .dll 的头文件创建 .lib 。
如果 dSPACE(MRET) 能够从其他库调用,那么将 CVI 函数移植到 .dll 中是一个好方法。请查看此处,此处和此处 >(从第 2.6 页底部开始)。
Your question is vague, more specific information will help get more specific answers.
Regarding
They might, look here for instance (quick google search)
LabWindows/CVI should be able to link and build to any C compatible API. If there is a header file, you can even guarantee a COFF compatible (and CVI compatible) .lib file to make things easier. Creating the .lib from a header file with an associated .dll is explained here.
If dSPACE(MRET) has the ability to call from other libraries, then porting CVI functions, into a .dll is a good way to go. Look here ,here and here (starting bottom of page 2.6).