使用D串口还是USB口?
我是 D 编程语言的新手,我想知道 D 是否可以使用串行端口或 USB 端口?
I'm new using the D programming language and I was wondering if D can make use of the Serial port or usb port?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能涉及某种类型的系统调用,这将是 C 语言,但您可以调用 C 函数D,所以除非有一个库可以为你包装它(我相当怀疑),否则你必须弄清楚适当的 C 调用是什么并使用它们。
That would presumably involve system calls of some kind, which would be in C, but you can call C functions from D, so unless there's a library that will wrap it for you (which I rather doubt), you'll have to figure out what the appropriate C calls are and use them.
在 D 中创建到 C 库的绑定非常简单,因此您可以尝试 libusb 进行交叉系统 USB 访问。
Creating bindings to C libraries is pretty straightforward in D, so you might try libusb for cross-system USB access.
Tango可以做串口。请参考
请注意,URL 引用 Tango 的 D2 端口。
Tango can do Serial port. Please refer to
Please notice that the URLs refers to a D2 port of Tango.