蓝牙调试工具
Linux 有 hcidump,它是一个非常方便的调试蓝牙问题的工具。
谁能推荐类似的 Windows 工具?如果有人知道什么好东西的话,我也会对 Linux 的其他工具感兴趣。
我正在尝试调查为什么我的 BT 设备在几秒钟后断开连接。我预计它是一个蹩脚的迷你加密狗,但想了解更多有关断开连接的原因。
Linux has hcidump which is a very handy tool for debugging bluetooth problems.
Can anyone recommend similar tools for Windows? I'd also be interested in other tools for Linux if anyone knows anything good.
I'm trying to investigate why my BT device disconnects after a couple of seconds. I expect its a crappy mini-dongle, but would like to find out more about where the disconnection originated from.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Windows USB 嗅探器(例如 Usbtrace 或 Usblyzer)捕获 USB 接口,并将捕获的输出转换为 btsnoop 文件格式,然后可以在 Wireshark 或 FTS4BT 查看器(来自 ww.fte.com 的免费工具)中加载和分析该文件格式。
You can capture the USB interface with a Windows USB sniffer, e.g. Usbtrace or Usblyzer and convert the captured output to btsnoop file format which can then be loaded and analyzed in Wireshark or FTS4BT viewer (free tool from ww.fte.com).
我认为您没有类似的 Windows 桌面工具,但对于 Windows CE,有一个名为 BTDC 工具的工具。如果您阅读 Wireshark wiki,他们会说没有适用于 Windows 的东西: http://wiki.wireshark.org /CaptureSetup/Bluetooth 和 http://wiki.wireshark.org/Bluetooth
您可以捕获流量,通过深入驱动程序,但为此你应该研究 Windows DDK。它允许您添加自己的扩展。
I don't think that you have something similar for Windows desktop, but for Windows CE there is a tool called BTDC Tool. If you read Wireshark wiki they say that there isn't something for Windows: http://wiki.wireshark.org/CaptureSetup/Bluetooth and http://wiki.wireshark.org/Bluetooth
You could capture the traffic, by going deep into the driver, but for this you should study the Windows DDK. It allows you to add extensions of your own.