-1

A previous post mentions when you install a USB driver on windows a pop-up shows three options of interface types. While looking into the inf file there are three interfaces:

SingleAdbInterface          = "Android ADB Interface"
CompositeAdbInterface       = "Android Composite ADB Interface"
SingleBootLoaderInterface   = "Android Bootloader Interface"

Are there any documents or descriptions of the protocols or features on these interface?

4

1 回答 1

1

在 Windows 中 ADB 使用通用的WINUSB驱动程序。adb二进制文件自己处理协议。

官方文档可以在以下位置找到:

https://android.googlesource.com/platform/system/core/+/master/adb/OVERVIEW.TXT https://android.googlesource.com/platform/system/core/+/master/adb/SERVICES.TXT https://android.googlesource.com/platform/system/core/+/master/adb/protocol.txt

于 2014-01-07T19:39:27.250 回答