0

I am trying to connect my Rockchip 3066 (momo7) device to adb on Mac OS X. But I see nothing on

adb devices 

List is empty. There are solutions for Windows - alternative adb.exe, but I didn't find one for Mac. I tried add vendor ID 0x2207 to adb_usb.ini but no success. Any suggestions how to make it work, please.

4

3 回答 3

1

下面的说明适用于将我的 macbook air 连接到 Rockchip rk3188 棒式计算机。要检查的其他事项是:

i) 设置->开发者选项->USB调试【需要勾选】

ii) 设置 -> USB -> 连接到 PC [需要检查]

$> sudo nano ~/.android/adb_usb.ini

Add the following line

Code:

0x2207

Restart the adb server

Code:

$> sudo adb kill-server

Code:

$> sudo adb start-server

Now Rockchip device will show up

Code:

$> adb devices
List of devices attached 
0123456789ABCDEF    device

参考自:

http://forum.yarvik.com/forum/xenta-series/yarvik-xenta-general-discussion/1916-device-not-listed-using-android-adb-tool

于 2014-02-26T12:08:51.003 回答
1

请记住将数字作为 0x2207 添加到 adb_usb.ini。不要忘记 0x,并且不要有任何空行。是的,就是这么挑剔。“adb start-server”应该报告“* daemon started successfully *”。如果发生故障,它会说“ADB 服务器没有确认,* 无法启动守护进程 *”。

于 2013-12-09T15:40:32.023 回答
0

我尝试在几台 Windows 机器上做同样的事情,并在 Mac 上用另一台机器做同样的事情,这也是非常便宜的中文但不错的设备。事实证明,主要问题出在 adp 中。如果该设备在设备管理器或系统报告中列出并显示“已连接调试”通知,则它被识别并且不存在与驱动程序相关的问题。这在 Mac 和 Windows 上都很容易实现。

但是,“adb devices”不显示设备。在 Windows 中,我只是遵循网络的建议并使用 adb 版本 .26 并且它有效。

缺乏对瑞芯微的支持显然是故意的。我不知道谁维护 adb,但如果是谷歌等。盟友,那么他们就是不喜欢便宜的设备。

于 2013-09-18T20:09:24.197 回答