[android-porting] GPRS and RIL

2011-05-12 Thread Adrien
Hi, I'm facing problems whe nintegrating a sireaa wireless Q26 dev kit on my IGEP board. I have succesfully linked the two parts with a RS232 serial link, but now that the android kernel is able to communicate with the dev kit, it won't (see logcat output) : I/RIL ( 847): Opening tty device

[android-porting] Re: GPRS and RIL

2011-05-13 Thread Adrien
gt; > > > > On Thu, May 12, 2011 at 4:30 PM, Adrien wrote: > > Hi, > > > I'm facing problems whe nintegrating a sireaa wireless Q26 dev kit on > > my IGEP board. > > > I have succesfully linked the two parts with a RS232 serial link, but > > now t

Re: Fwd: [android-porting] RIL stalls when setting /dev/ttyS0 permisions in init.rc

2011-05-19 Thread Adrien
Hi, I am trying to use a sierra wireless modem on android and i encountered the same problems as you did and resolved part of those with this procedure: hardware/ril/libril/ril.cpp First #if 0 to #if 1 Removes can't connect to rild socket, but now we have can't connect to rild-debug Comment nex

[android-porting] GSM and RIL: network registration problem

2011-05-31 Thread Adrien
Hi, I have been trying for some time to use a GSM modem on android but every time i solve a problem, another one appears. ***sighs*** I am able to boot android with the modem attached, the RIL starts talking to it and i have several things happening: the modem can detect all the operator emitting

[android-porting] Re: GSM and RIL: network registration problem

2011-05-31 Thread Adrien
For now i resolved the problem by replacing AT+COPS=3,0;+COPS?; +COPS=3,1;+COPS?; +COPS=3,2;+COPS? with AT+COPS=3,0;+COPS? It does the trick... for now :) On 31 mai, 10:56, Adrien wrote: > Hi, > > I have been trying for some time to use a GSM modem on android but > every time i sol

[android-porting] Setup ppp

2011-05-31 Thread Adrien
Hi, I need to use ppp in Froyo. I need some pointers on how to do this. What i know for now: === init.rc === Need to add setprop ro.radio.use-ppp yes service pppd_gprs /etc/ppp/init.gprs-pppd user root group radio cache inet misc disabled Thing is i don't have init

[android-porting] Re: Setup ppp

2011-06-01 Thread Adrien
thank you both, i'll try both solutions. On 1 juin, 09:47, paldan wrote: > Hello, > > On 31 Mag, 16:08, Adrien wrote: > > > > > > > > > > > Hi, > > > I need to use ppp in Froyo. I need some pointers on how to do this. > >

[android-porting] Re: Setup ppp

2011-06-06 Thread Adrien
06-01 > > > > lnxarm > > > > 发件人: paldan > > 发送时间: 2011-06-01 03:47:14 > > 收件人: android-porting > > 抄送: > > 主题: [android-porting] Re: Setup ppp > > Hello, > > On 31 Mag, 1

[android-porting] Re: Setup ppp

2011-06-08 Thread Adrien
> On Jun 6, 10:21 am, Adrien wrote: > > > > > Plus i've seen on several forums that people use two tty lines to > > access the modem: one for data and one for calls if i understand > > correctly. Could the problem come from this? If so how can i setup > > mul

[android-porting] Re: Setup ppp

2011-06-09 Thread Adrien
ne bottle tonight and i hope i'll open it tomorrow :D ) thanks for the help btw, i am setting up a wiki documenting all my work, and will give the link to the ppp related page when i can use it. On 8 juin, 14:11, Adrien wrote: > Ok thanks for the answers. I'll try to use seperate lines a

[android-porting] Re: Setup ppp

2011-06-10 Thread Adrien
14:02, paldan wrote: > Hi, > > On 9 Giu, 17:34, Adrien wrote: > > > The problem i have now is that doing so apparently removes all > > interfaces (when i do ifconfig, i have 0 interfaces, not event eth0 > > and lo which i had just before). Then when i try to p

[android-porting] Re : Re: Setup ppp

2011-06-17 Thread Adrien
sorry for the long wait, i had to change my modem so i had a few things i had to take care of before continuing ppp dev. I can't seem to be able to start pppd from ril: actually, th ril doesn't seem to call the setupdatacall function at all. Below is my radio logcat: as you can see, it seems th

[android-porting] CTS and frameword modifications

2011-03-30 Thread Adrien Moa
} public InterfaceC getBObject(){ return (InterfaceC) new D(); } } D implements InterfaceC. Do this two modification are CTS compliant? Thanks, Adrien -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Porting android on a basic phone

2011-04-04 Thread Adrien Moa
ertain API function as returning always an error value (like null for getCellLocation() function) ? Thanks, Adrien -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Porting android on a basic phone

2011-04-04 Thread Adrien Moa
Or better, if in my "vendor"-ril I reply NOT_SUPPORTED on onRequest method on certain Event ? My basic phone must passed the CTS. Thanks, Adrien On 4 avr, 16:01, Adrien Moa wrote: > Hi all, > > For a school project, I'am trying to port android 2.3 on a basic phone t

[android-porting] Re : Re: Setup ppp

2011-06-20 Thread Adrien Ferré
Hi everyone, i made some progress during the weekend, thanks to chenyihuaz. I added the requests IMEI, IMSI et IMEISV which apparently were the cause of the data call never being made. The ppp script is now started by the RIL, but the ip scripts are never called. I obviously made the scripts e

[android-porting] PPP and data connection

2011-06-22 Thread Adrien Ferré
Hi I wanted to know which version of d do you have if you are using it to get data connection (i have ppp 2.4.3). I am having a lot of troubles trying to use pppd with the chat scripts. The connection seems to be up, be the ip-up and ip-down scripts never get called, no matter what permission

[android-porting] Re : Re: Setup ppp

2011-06-23 Thread Adrien Ferré
Hi The problem with the ip scripts was that i had to name them like this ip-up-ppp0 ip-down-ppp0 so that the ppp deamon knows where to find them. So now, pppd starts along with ip-scripts and they allow me to pass the ips to Android's higher level layers (using system properties). BUT, it stop

Re : Re: [android-porting] pppd on gingerbread

2011-07-18 Thread Adrien Ferré
Go to ftp://ftp.samba.org/pub and download the 2.4.4 archive file. Copy the chat dir to ../froyo/external/ppp/ . We are gonna have to make a couple of changes to some files in order to actually build the files. You have to add this Android.mk file to ../froyo/external/ppp/chat/ LOCAL_PATH:= $

Re : Re: [android-porting] pppd on gingerbread

2011-07-20 Thread Adrien Ferré
I doubt that your APN's name is "internet"... -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re : Re: Re : Re: [android-porting] pppd on gingerbread

2011-07-22 Thread Adrien Ferré
You should read this: http://*ppp*.samba.org/*ppp*/pppd.html And then try a bunch of configurations with your modem. For my sierra wireless Q26 and pppd I use : /system/bin/pppd /dev/ttyUSB0 115200 modem linkname ppp0 user ""

Re : Re: Re : Re: Re : Re: [android-porting] pppd on gingerbread

2011-07-25 Thread Adrien Ferré
Hey Don't you use the CHAT program with pppd? Do you have a result code or a verbose string explaining why you don't have an ip or dns (it's given by CHAT)? Can you copy paste the results you have on the RADIO and MAIN logcats (using adb logcat -b main and adb logcat -b radio)? Maybe you mea

Re : Re: [android-porting] pppd on gingerbread

2011-07-26 Thread Adrien Ferré
"Hi Adrien Ferré. i am able to connect internet using gprs modem with ip address. #ping 209.85.231.104 i did these steps for enabling the gprs on Gingerbread. first i had enable the gpsr connections using some at+ command. then i run pppd command. then i got the ip address and my ne

[android-porting] Re : Re: [rowboat] Re : arowboat Android updates for Crane, Beagle and IGEP platforms

2011-08-03 Thread Adrien Ferré
yep, but not gingerbread-dsp -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re : arowboat Android updates for Crane, Beagle and IGEP platforms

2011-08-03 Thread Adrien Ferré
Not for the beagleboard XM RevC though. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Porting updatedd

2011-08-23 Thread Adrien Ferré
Hi, I'd like to use updatedd in Android. Updatedd is a tool allowing to publish IP address changes to ovh, noip, dyndns, ... I managed to build it using the following: export PATH=/bin ./configure --host=arm-none-linux-gnueabi make sudo make install But now that i have copied the binaries

[android-porting] Re: cinterion gprs

2011-10-23 Thread Adrien Ferré
Hi, I tried to use a BG2 E gprs modem, but didn't succeed. You can use more up to date modems like PH8 (Cinterion has developed the Android RIL for this modem). -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Porting RILd

2012-11-06 Thread Adrien Ferré
Hi Please post the command line you use to start rild. Le dimanche 4 novembre 2012 16:33:19 UTC+1, Alexander Postol a écrit : > > Hello, all. About my problem. I have a Huawei Vision U8850, official > firmware is Android 2.3.7 and don't have official Android 4.0.3 ICS. But i > port Android 4.0.

[android-porting] [Graphics] Porting Android4.2.2_r1 to a custom platform

2013-08-14 Thread Adrien Grassein
id want to work on the front framebuffer. If I do not synchronize layers, I can see tearing on my screen. (I USE an IOCTL named FBIOPAN_DISPLAY to swap the framebuffer in the hwcomposer). My platform perfectly works on Android 2.3.7 and on Android 4.0.4 Thanks for your help, Adrien -