LabView NXT 编程 - 错误 1003

发布于 2024-09-30 21:49:30 字数 326 浏览 0 评论 0原文

我正在使用 LabView 2009 的 NXT 工具包插件,并且正在尝试下载一个针对 NXT 的程序。编译时,失败并出现错误。

错误1003:VI不可执行。该 VI 很可能已损坏或无法找到其子 VI 之一。选择文件>>打开打开VI,然后验证您是否能够运行它。 来源:

  • 重试当前操作。

  • 重新启动 LabVIEW 并重试。

由于没有显示错误来源,所以我不知所措。

我正在使用蓝牙连接,尽管它显示连接正常,并且我已经制作了其他有效的程序。

任何帮助将不胜感激。

I'm using the NXT toolkit addon for LabView 2009 and I'm trying to download a program, targetted to the NXT onto the brick. When compiling, it fails with the error.

Error 1003: The VI is not executable. Most likely the VI is broken or one of its subVIs cannot be located. Select File>>Open to open the VI and then verify that you are able to run it.
Source:

  • Retry the current operation.

  • Restart LabVIEW and try again.

Since no source for the error is shown then I'm at a loss.

I'm connecting with bluetooth, although it is showing the connection as working and I've made other programs that have worked.

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九局 2024-10-07 21:49:30

该错误表明项目中的某个 VI 无法执行或无法找到。以下是需要考虑的几个问题。您的项目中有很多VI或子VI吗?我建议查看 VI 层次结构(View > VI Hierarchy)。您是否从项目视图进行编译 - 是否有任何 VI 的名称旁边有警告符号?

必须缺少其中一个 VI。看看 NI 论坛上的这篇文章。它显示了“缺失”VI 的示例。 VI 在以下情况下丢失:

  • LabVIEW 在错误的目录中查找它(或其文件路径已更改)
  • 文件名已更改
  • 如链接示例所示,使用多态 VI 而不是 VI 本身 (参见此处

您的错误可能是由损坏的 VI 引起的:

  • VI 内的错误阻止其运行(更难追踪)

The error states that one of the VIs in the project is not executable or cannot be found. Here are a few questions to consider. Are there many VIs or subVIs in your project? I recommend looking at the VI Hierarchy (View > VI Hierarchy). Are you compiling from the Project view - do any of the VIs have a warning symbol next to its name?

One of the VIs must be missing. Look at this post on NI forums. It shows an example of a "missing" VI. A VI goes missing when:

  • LabVIEW is looking for it in the wrong directory (or its filepath changed)
  • Its filename changed
  • As the linked example shows, use of a polymorphic VI rather than the VI itself (see here)

Your error could be caused by a VI which is broken:

  • An error within the VI prevents it from running (harder to track down)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文