如何在 OS X 中与 GPIO USB 设备通信?
我有一个 ViMicro 的 USB 网络摄像头,其中包含 GPIO 芯片。我们有一个微开关连接到其中一个 IO 引脚,并且可以使用 ViMicro 提供的 ActiveX 控件读取 Windows 上开关的状态,该控件名为 exvmuc.ax
。我需要在 OS X 上使用 IOKit 复制此功能。SysNucleus
中的 USBTrace 显示 Windows 系统和 USB 设备之间发生的对话,但我无法在 Mac 上复制此功能。
有谁知道 USB 嗅探器软件(例如 USBTrace)可以在 OS X 上运行,以便我可以比较数据包?另外,有人熟悉这个特定的相机芯片及其 GPIO 子系统,甚至在 Linux 上也是如此吗?
I have a USB web camera from ViMicro that contains a GPIO chip. We have a microswitch wired to one of the IO pins and can read the status of the switch on Windows using an ActiveX control that was provided by ViMicro, named exvmuvc.ax
. I need to duplicate this functionality using IOKit on OS X.
USBTrace from SysNucleus displays the conversation happening between the Windows system and the USB device, but I cannot duplicate this on the Mac.
Does anyone know of a software USB sniffer, like USBTrace, that works on OS X so that I can compare the packets? Also, is anyone familiar with this particular camera chip and its GPIO subsystem, even on Linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Xcode 中的 usbtracer,或者您可以尝试将 USB Prober 与 IOUSBFamily 调试版本一起使用,这很可能会输出比您实际想要的更多的信息。您可能需要查看 qa1370 了解更多信息。
但总的来说,我建议您使用硬件 USB 分析仪,它们使此类事情变得更加容易。
You could use usbtracer from Xcode, or you can try using using USB Prober with a debug release of IOUSBFamily, this will most likely output more information than you actually want. You may want to look at qa1370 for more information.
In general though, I'd recommend you get a hardware USB analyzer, they make this sort of thing much easier.