Rohit Kalhans
unread,Mar 18, 2011, 4:20:48 PM3/18/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to bpgc-androi...@googlegroups.com
Haven't tried it but i think this will work, (Written at 1:45 AM without any influence of caffeine) :D
in terminal scan all usb ports
rohit@rohit-laptop:/$ lsusb
Bus 001 Device 010: ID 04e8:681c Samsung Electronics Co., Ltd
Bus 001 Device 007: ID 056a:0093 Wacom Co., Ltd
Bus 001 Device 006: ID 08ff:1600 AuthenTec, Inc. AES1600
Bus 001 Device 005: ID 064e:a110 Suyin Corp. HP Webcam
Bus 001 Device 003: ID 04b4:6560 Cypress Semiconductor Corp. CY7C65640 USB-2.0 "TetraHub"
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 003: ID 03f0:171d Hewlett-Packard Wireless (Bluetooth + WLAN) Interface [Integrated Module]
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Since i have connected a samsung phone the first line shows the device at address 010 with ID 04e8:681c
now the first part in the ID is the vendor code(for Samsung its
0x04e8). i guess if you take the vendor code from here it should work
for micromax phone.
if not try connecting the phone explicitly by using modeprobe tool for serial usb as follows
sudo /sbin/modprobe usbserial vendor=0x(vid) product=0x(pid)
like in my case i used
rohit@rohit-laptop:/$ sudo /sbin/modprobe usbserial vendor=0x04e8 product=0x681c
[sudo] password for rohit:
rohit@rohit-laptop:/$
hope this works. keep me updated.