Hi everyone,
I am not a developer, i searched for finding how to make motorola xoom WIFI to connect with Huawei LTE 4G E392,
But i didn`t find.
So please if someone can help developing.
Here is what i found
here is the link for it (http://forum.xda-developers.com/show...1494891&page=4)
It's also in the latest source (http://git.kernel.org/?p=linux/kerne...37b49c1753f33b)
I also found this (https://github.com/DerArtem/huaweigeneric-ril).
PLEASE DEVELOPERS TAKE A LOOK INTO IT, if possible fro the source please build a kernel patch or script
thanks to zerox981
I am not a developer, i searched for finding how to make motorola xoom WIFI to connect with Huawei LTE 4G E392,
But i didn`t find.
So please if someone can help developing.
Here is what i found
Quote:
Originally Posted by zerox981
(Post 23987592)
This is the way I get my dongle (Vodafone K4605) working with the latest TeamEOS nightly wingray (84 atm :)).
Tools I use: WinSCP - http://winscp.net/eng/index.php SSHdroid - https://play.google.com/store/apps/d...sshdroid&hl=en putty - http://www.chiark.greenend.org.uk/~sgtatham/putty/ 1) Download the latest development overlay from this thread: http://forum.xda-developers.com/show....php?t=1513490 2) Delete the drivers you don't need from the zip file. (xoom_dev_overlay_v4.zip\data\local\lib\modules\). For my needs it's enough to keep only the option.ko and usb_wwan.ko. 3) Flash the dev. overlay. 4) Install pppd, usb_modeswitch and chat binary Now you need to install pppd, usbmodeswitch and the chat binary the kernel is missing. You can google them or use my 3gdongle.zip file with my configs:). Run sshdroid so you can ssh to your android device (or use adb shell etc.). Connect to your andrid device with putty. Then run Code:
sysrw Copy the contents of the zip file in the root folder using WinSCP. Add the execute permission on /system/xbin/chat /system/xbin/usb_modeswitch /system/bin/pppd /system/etc/ppp/ip-up /system/etc/ppp/ip-down (using WinSCP or with chattr via ssh) 5) Plug the dongle to your windows machine & using Vodafone windows application disable pin authentication. (You can let it enabled but you have to modify the gprs-connect-chat i guess). 6) Disable the CD-ROM mode (I think it's not required because we are using usb_modeswitch, but i did it a long time ago and I'm too lazy to enable it back:D). Under Control Panel->Phone and Modem look in the Modems tab. There should be the COM port written in the "Attached To" column. Using putty & connection type serial connect to your modem and disable the CD-ROM mode using the command Code:
AT^SETPORT="A1;1,2,3" Using te ATI command you should get the modem information back. ex: Code:
Manufacturer: Vodafone (Huawei) Code:
sh-4.1# lsmod dmesg> Code:
[ 1903.631599] usb 2-1: new high speed USB device number 3 using tegra-ehci Code:
Bus 001 Device 001: ID 1d6b:0002 Code:
usb_modeswitch -c /etc/usb_modeswitch.d/12d1_14c1 Code:
sh-4.1# lsusb After the modeswitch you should see your device under /dev/ttyUSB*. But with the K4605 we don't because option.ko doesn't know our device. So we need to call Code:
echo "12d1 14c6" >/sys/bus/usb/drivers/option/module/drivers/usb-serial:option1/new_id 11) check if modem is responding: Code:
cat /dev/ttyUSB0 & echo AT > /dev/ttyUSB0 12) Set the config files. If you installed my 3gdongle.zip file you will find my config files under /system/etc/ppp . You have to edit the gprs-connect-chat file and the peers/gprs file. I will not go into detail about this config files. There is a lot of information about it on xda forums and google should be your best friend too ;). bonus) I use this scripts to enable and disable internet via my 3G dongle using the scriptmanager app (https://play.google.com/store/apps/d...tmanager&hl=en) 01_init3g.sh - Run it after plugging the 3g dongle to your android device (k4605 specific) Code:
# My modem Vodafone K4605 is unknown to option.ko so we manually add it Code:
#!/system/bin/sh Code:
#!/system/bin/sh |
It's also in the latest source (http://git.kernel.org/?p=linux/kerne...37b49c1753f33b)
I also found this (https://github.com/DerArtem/huaweigeneric-ril).
PLEASE DEVELOPERS TAKE A LOOK INTO IT, if possible fro the source please build a kernel patch or script
thanks to zerox981