简体   繁体   English

UBISLATE的DATAWIND的USB供应商ID

[英]USB Vendor ID for DATAWIND by UBISLATE

I am trying to run and debug my application on the device DATAWIND by UBISLATE. 我正在尝试通过UBISLATE在设备DATAWIND上运行和调试我的应用程序。

How can I find the USB Vendor ID? 如何找到USB供应商ID?

To connect the Android Debug Bridge (adb) with DATAWIND Ubislate 7C+, run a command in Ubuntu terminal 要将Android调试桥(adb)与DATAWIND Ubislate 7C +连接,请在Ubuntu终端中运行命令

lsusb

it will list the connected usb's as 它将列出已连接的USB

......
Bus 001 Device 007: ID 18d1:0003 Google Inc. 
......

in which 18d1 is to be taken as the vendor id. 其中18d1将用作供应商ID。 Then edit the /etc/udev/rules.d/51-android.rules as follows 然后按如下所示编辑/etc/udev/rules.d/51-android.rules

SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666"

then restart the udev by 然后通过重新启动udev

# /etc/init.d/udev restart

That's it, It is done now. 就这样,现在完成了。 Have to disconnect and reconnect the tablet with computer. 必须断开平板电脑并将其重新连接到计算机。 For a check type in the terminal as 对于检查输入终端

adb shell 

it will points to the root of tablet as root@android:/ 它将指向平板电脑的根目录为root@android:/

or `type 或`类型

adb devices

that gives 这给

List of devices attached 
200804111413fc082   device

This is based on 这是基于

How to register this tablet to Ubuntu udev list? 如何将此平板电脑注册到Ubuntu udev列表?

and the link provided in it. 以及其中提供的链接。

http://clamel.netai.net/smartpad850i/enable_adb http://clamel.netai.net/smartpad850i/enable_adb

The list of Vendor IDs is here it seems that the device you specified does't has one. 供应商ID列表在此处似乎您指定的设备没有一个。 So you can not connect to Android Debug Bridge (adb), still you can copy the apk from bin folder of your project to your device, install and run it. 因此,您无法连接到Android调试桥(adb),仍然可以将apk从项目的bin文件夹复制到设备上,安装并运行它。

USB vendor ids can be found at www.linux-usb.org/usb.ids. 可以在www.linux-usb.org/usb.ids上找到USB供应商ID。
18d1 Google Inc. 18d1 Google Inc.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM