Reputation: 1478
I am trying to run and debug my application on the device DATAWIND by UBISLATE.
How can I find the USB Vendor ID?
Upvotes: 1
Views: 1756
Reputation: 56
USB vendor ids can be found at www.linux-usb.org/usb.ids.
18d1 Google Inc.
Upvotes: 0
Reputation: 151
To connect the Android Debug Bridge (adb) with DATAWIND Ubislate 7C+, run a command in Ubuntu terminal
lsusb
it will list the connected usb's as
......
Bus 001 Device 007: ID 18d1:0003 Google Inc.
......
in which 18d1 is to be taken as the vendor id. Then edit the /etc/udev/rules.d/51-android.rules as follows
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666"
then restart the udev by
# /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:/
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?
and the link provided in it.
http://clamel.netai.net/smartpad850i/enable_adb
Upvotes: 5