[android-porting] Re: RIL issue

2013-07-01 Thread Prabu N
Hi What is the RIL you are using and which Vendor's RIL? Give more detail Prabu On Wednesday, June 26, 2013 7:11:41 PM UTC+5:30, Sumit Sharma wrote: > > hi all > i'm facing the issue regarding RILif u can help me > i the logcats i'm getting > > 01-01 00:00:16.124 D/RIL_MUXD( 71): Mux P

[android-porting] Re: RIL issue

2013-07-06 Thread Sumit Sharma
hi Prabu, Sorry for the late reply.. I have got libreference-ril.so and libril.so from the vendor of Neoway M660 On Friday, 28 June 2013 21:18:22 UTC+5:30, Prabu N wrote: > > > Hi > > What is the RIL you are using and which Vendor's RIL? Give more detail > > Prabu > > > > On Wednesday, June 26, 2

[android-porting] Re: RIL issue

2013-07-07 Thread Sumit Sharma
hi Prabu Sorry for late reply I'm using librefrence-ril.so and libril.so from the vendor Neoway M660 On Wednesday, 26 June 2013 19:11:41 UTC+5:30, Sumit Sharma wrote: > > hi all > i'm facing the issue regarding RILif u can help me > i the logcats i'm getting > > 01-01 00:00:16.124 D/RIL_MUXD(

Re: [android-porting] Re: RIL issue

2013-07-01 Thread Atul Raut
plz shared radio logs Thanks, -- Atul Raut http://rautatul.weebly.com/ http://atulraut.wordpress.com/ atulrau...@gmail.com On Fri,

Re: [android-porting] Re: RIL issue

2013-07-01 Thread Atul Raut
plz ignore last mail. Thanks, -- Atul Raut http://rautatul.weebly.com/ http://atulraut.wordpress.com/ atulrau...@gmail.com On Mon,

[android-porting] Re: RIL Issue for Making GSM call

2011-03-03 Thread Maffiou
>From what I can tell, your log doesn't reach a point where it is trying to make a call. You seem to have some issue much before that point. And from what I can tell, it's definitely RIL/Modem level, not likely anything to do with the rest of the android SW. It would be interesting to see how long

[android-porting] Re: RIL Issue for Making GSM call

2011-03-04 Thread Maffiou
Hello Ani. I'm assuming your using the reference ril... The simplest way of removing sim ios is to comment the case RIL_REQUEST_SIM_IO in onRequest in hardware/ril/reference-ril/ reference-ril.c Not sure it will solve your issues, but I think it is worth a try. M. On Mar 4, 12:28 pm, animesh

[android-porting] Re: RIL Issue for Making GSM call

2011-03-07 Thread Maffiou
There can be multiple reason for the incoming call not working... I don't think it is linked to your commenting of the SIM_IO (but I could be wrong!)... Does the call drop as you try to answer it or just by itself? What modem do you use? I would check the documentation to make sure it supports the

[android-porting] Re: RIL Issue for Making GSM call

2011-03-25 Thread Maffiou
Well, If I remember well, some networks aren't terminating calls explicitely when the remote party is hanging up... I remember that this was the case on BT cellnet in the UK about 10 years ago... Could it be that one of the network where you are could still be configured like that, don't know... W

[android-porting] Re: RIL Issue for Making GSM call

2011-03-28 Thread Maffiou
On Mar 27, 6:04 pm, animesh arora wrote: > i dont think the service provider side will be any issue,its working in my > mobile.So is there any problem on JAVA (RIL.java) in framework any problem? If you don't receive any end of call notification from the modem (I think that what you said, but c

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-03 Thread animesh arora
Hi Find the latest log for Making GSM call with the help of dialer in android. Help me out for it i am getting this message after making a call through dialer,is there any solution to make a call.Is the log is proper which i am getting after dial up a mobile no.??? # I/ActivityManager( 1650): St

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-03 Thread arindam das
Hi Animesh, I can see in ur log D/RILJ( 1748): [0067]> DIAL but it didnt result to any AT command(hoping that the IPC mechanism is AT). No log is coming from reference-ril.so(or whatever logtag you ahve given in reference-ril.c code) Please check first those logs are enable

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-04 Thread animesh arora
Hi Arrin/Moffiou Please tell me clearly i what i need to comment out,are you telling about to comment out the particular SIMIO related AT Command. Tell me is there possiblity of blocking GSM AT interfaced channel,so i am not able to call.If yes tell me how we can test it out wheather it is got bl

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-04 Thread arindam das
animesh, i could not see any AT log please enable the logs first and collect one second thing is comment out sim_io On Fri, Mar 4, 2011 at 5:58 PM, animesh arora wrote: > Hi Arrin/Moffiou > > Please tell me clearly i what i need to comment out,are you telling about > to comment out the par

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-04 Thread animesh arora
where we can enable AT log message by default it is coming for RIL layer,i dont know where we can enable for JAVA layer which i am getting after pressing the call button. On Fri, Mar 4, 2011 at 6:04 PM, arindam das wrote: > animesh, > i could not see any AT log please enable the logs first an

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-17 Thread Maffiou
Have you provisioned voice call in your sqlite DB? In an adb root shell: $ cd /data/data/com.android.providers.settings/databases $ sqlite3 settings.db INSERT INTO secure (name, value) VALUES ('device_provisioned', 1); .exit $ reboot I think that should probably take c

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-24 Thread Maffiou
There are several possible things: Does the problem happen on outgoing calls as well as incoming calls ( all remote hangup, of course) If it's only on incoming call, you may need to check if your modem is generating multiple ring indications, i think there is a setting you can use to let the fram

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-03-27 Thread animesh arora
i dont think the service provider side will be any issue,its working in my mobile.So is there any problem on JAVA (RIL.java) in framework any problem? DTMF Stop error is coming continuously.Is there any possibility that audio service is not killing automatically when we are making /receiving call,

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-04-02 Thread animesh arora
All AT commands are properly suiting to my modem and getting the OK response also from modem side,what may be other issue at ril level? On Mon, Mar 28, 2011 at 1:33 AM, Maffiou wrote: > > > On Mar 27, 6:04 pm, animesh arora wrote: > > i dont think the service provider side will be any issue,its

Re: [android-porting] Re: RIL Issue for Making GSM call

2011-04-04 Thread nidroid
Please check whether the communication channel (socket) between RIL.java and this layer is hapening properlyput logs and then check... On Sat, Apr 2, 2011 at 2:51 PM, animesh arora wrote: > All AT commands are properly suiting to my modem and getting the OK > response also from modem side,wha