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,
because audio flinger still not working,so thats why call gui also not going
off automatically even we will cut the call.

On Fri, Mar 25, 2011 at 11:15 AM, Maffiou <maff...@gmail.com> wrote:

> 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...
>
> What happens if you put your sim card into a reference phone? Does it
> release the call? If not, then I don't think there is much you can
> do... (maybe try on a different network?)
>
> If the reference phone releases the call, then you should study your
> modem documentation to see if there is a way to configure these
> notifications... If not, then you may have to poll the call state
> regularly with a command like at+clcc
>
> M.
>
>
>
> On Mar 25, 2:29 pm, animesh arora <animesharora...@gmail.com> wrote:
> > Can you tell me more clear what you told in this sentance
> > " network thing, which is not explicitely terminating calls when the
> remote
> > party hangs up."
> > Please let me know how we can solve this problem.
> >
> > On Fri, Mar 25, 2011 at 7:26 AM, animesh arora <
> animesharora...@gmail.com>wrote:
> >
> >
> >
> >
> >
> >
> >
> > > ya its happening for all the calls either incoming or outgoing the call
> > > timer GUI will not go even we will cut the call from other side.
> >
> > > On Thu, Mar 24, 2011 at 9:12 AM, Maffiou <maff...@gmail.com> wrote:
> >
> > >> 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 framework know.
> >
> > >> If it's on all calls, then it may be a network thing, which is not
> > >> explicitely terminating calls when the remote party hangs up. BT
> > >> Cellnet used to do that, maybe that still the case on some networks...
> >
> > >> In all, a set of logs would tell you.
> >
> > >> M.
> >
> > >> On 24 March 2011 15:37, animesh arora <animesharora...@gmail.com>
> wrote:
> > >> > Now able to recieve and send call,but in both the cases the call
> timer
> > >> will
> > >> > not stop even we will cut the call from other side.
> > >> > Is there any more service we need to run?
> >
> > >> > On Thu, Mar 17, 2011 at 8:25 AM, Maffiou <maff...@gmail.com> wrote:
> >
> > >> >> 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
> > >> >>     <sqlite> INSERT INTO secure (name, value) VALUES
> > >> >> ('device_provisioned', 1);
> > >> >>     <sqlite> .exit
> > >> >>     $ reboot
> >
> > >> >> I think that should probably take care of your problem.
> >
> > >> >> m.
> >
> > >> >> On 17 March 2011 15:02, animesh arora <animesharora...@gmail.com>
> > >> wrote:
> > >> >> > Its surley supports voice calls,for time beeing i am commenting
> the
> > >> >> > AT+CHLD=0,so able to get call continously,but not able to get why
> > >> >> > incoming
> > >> >> > call screen is not coming???
> >
> > >> >> > Can anybody suggest how we can debug the code for telephony to
> ril
> > >> code
> > >> >> > flow.
> >
> > >> >> > On Thu, Mar 17, 2011 at 1:13 AM, arindam das <
> das.ar...@gmail.com>
> > >> >> > wrote:
> >
> > >> >> >> dude..i dnt know which board you are using for testing and it
> gives
> > >> you
> > >> >> >> any port to debug android ril realtime or not....
> > >> >> >> but im pretty much sure you have to start getting accustomed
> with
> > >> logs
> > >> >> >> for
> > >> >> >> debugging
> >
> > >> >> >> On Wed, Mar 16, 2011 at 9:35 PM, animesh arora
> > >> >> >> <animesharora...@gmail.com>
> > >> >> >> wrote:
> >
> > >> >> >>> That only i am not getting.Log only is not helpful to
> debug.Need
> > >> >> >>> inside
> > >> >> >>> technical solution how we can do it.
> > >> >> >>> Have anybody debuged these type for problems for RIL?????
> >
> > >> >> >>> On Wed, Mar 16, 2011 at 9:00 AM, arindam das <
> das.ar...@gmail.com>
> > >> >> >>> wrote:
> >
> > >> >> >>>> collect one log...will be interesting to see how telephony
> > >> framework
> > >> >> >>>> can
> > >> >> >>>> reject a call automaticaly....my hunch is its getting any
> unsol
> > >> >> >>>> indication
> > >> >> >>>> from the modem.
> >
> > >> >> >>>> ima afraid that logs are the only possible way to debug. :(
> >
> > >> >> >>>> -ari
> >
> > >> >> >>>> On Wed, Mar 16, 2011 at 8:58 PM, animesh arora
> > >> >> >>>> <animesharora...@gmail.com> wrote:
> >
> > >> >> >>>>> Call is automatically droping whenever i am trying to call
> that
> > >> >> >>>>> no.after 2 rings.its automatically using AT+CHLD=0,and
> droping
> > >> the
> > >> >> >>>>> call.Not
> > >> >> >>>>> able to find why it is going automatically in that case of
> > >> >> >>>>> reference-ril.
> >
> > >> >> >>>>> Can anyone suggest how we can check the flow for these type
> of
> > >> >> >>>>> Unsollicited calls like incoming call,incoming SMS.Is there
> any
> > >> >> >>>>> proper way
> > >> >> >>>>> to check it.And how it is communicating through JNI/JAVA for
> > >> these
> > >> >> >>>>> UNSOLICITED calls.i know it is using socket,but is there any
> > >> >> >>>>> procedure to
> > >> >> >>>>> check this flow,and where we are strucking.
> >
> > >> >> >>>>> Please let me know any type of Debugger also for target
> debugging
> > >> >> >>>>> for
> > >> >> >>>>> RIL.
> >
> > >> >> >>>>> Regards
> >
> > >> >> >>>>> ANI.
> >
> > >> >> >>>>> On Tue, Mar 8, 2011 at 2:42 AM, arindam das <
> das.ar...@gmail.com
> >
> > >> >> >>>>> wrote:
> >
> > >> >> >>>>>> SIM_IO is used for reading writing to sim e.g. MS-ISDN
> > >> list,reading
> > >> >> >>>>>> writing SMSC number,reading writing sim contacts,try  to
> capture
> > >> >> >>>>>> some
> > >> >> >>>>>> logs..without which it will very difficult to suggest
> anything
> >
> > >> >> >>>>>> On Mon, Mar 7, 2011 at 3:00 PM, animesh arora
> > >> >> >>>>>> <animesharora...@gmail.com> wrote:
> >
> > >> >> >>>>>>> Now i able to make a call with my device no. after
> commenting
> > >> >> >>>>>>> SIM_IO
> > >> >> >>>>>>> functionality,but i am not able to recieve the call, if i
> am
> > >> >> >>>>>>> calling through
> > >> >> >>>>>>> my mobile to that device no..only 2 rings are going after
> that
> > >> >> >>>>>>> call is
> > >> >> >>>>>>> droping out.
> > >> >> >>>>>>> What may be the issue.
> > >> >> >>>>>>> What will be the uses of SIM_IO functionality,which i
> > >> commented,is
> > >> >> >>>>>>> it
> > >> >> >>>>>>> useful for recieving the call????
> >
> > >> >> >>>>>>> Regards
> >
> > >> >> >>>>>>> ANI.
> >
> > >> >> >>>>>>> On Fri, Mar 4, 2011 at 7:07 PM, arindam das <
> > >> das.ar...@gmail.com>
> > >> >> >>>>>>> wrote:
> >
> > >> >> >>>>>>>> JAVA logs are coming by default but not the refernce ril
> log.
> >
> > >> >> >>>>>>>> go to hardware/ril/reference-ril.c
> >
> > >> >> >>>>>>>> and check log_tag is defined or not??
> > >> >> >>>>>>>> If in this file LOG_TAG is defined something other than
> > >> >> >>>>>>>> "RIL",then u
> > >> >> >>>>>>>> have to give
> > >> >> >>>>>>>> logcat-b radio&logcat& to get log
> >
> > >> >> >>>>>>>> similarly in same path u can check for the at parser files
> for
> > >> >> >>>>>>>> the
> > >> >> >>>>>>>> logs.
> >
> > >> >> >>>>>>>> I presume due to some at commands ur modem is hanging and
> > >> nothing
> > >> >> >>>>>>>> proceeds...
> >
> > >> >> >>>>>>>> On Fri, Mar 4, 2011 at 6:27 PM, animesh arora
> > >> >> >>>>>>>> <animesharora...@gmail.com> wrote:
> >
> > >> >> >>>>>>>>> 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
> > >> >> >>>>>>>>> <das.ar...@gmail.com>
> > >> >> >>>>>>>>> wrote:
> >
> > >> >> >>>>>>>>>> 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
> > >> >> >>>>>>>>>> <animesharora...@gmail.com> wrote:
> >
> > >> >> >>>>>>>>>>> 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 blocked or not?
> >
> > >> >> >>>>>>>>>>> Is there any procedure to test it out?
> >
> > >> >> >>>>>>>>>>> Regards
> >
> > >> >> >>>>>>>>>>> ANI
> >
> > >> >> >>>>>>>>>>> On Fri, Mar 4, 2011 at 12:08 PM, arindam das
> > >> >> >>>>>>>>>>> <das.ar...@gmail.com> wrote:
> >
> > >> >> >>>>>>>>>>>> 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 enabled or not...may
> be
> > >> >> >>>>>>>>>>>> something is failing from there itself.
> >
> > >> >> >>>>>>>>>>>> And I totally agree with maffiou,comment out the
> > >> >> >>>>>>>>>>>> SIM_IO(at+crsm
> > >> >> >>>>>>>>>>>> calls) request from your ril code and check whether it
> > >> >> >>>>>>>>>>>> proceeds with  the MO
> > >> >> >>>>>>>>>>>> call or not
> >
> > >> >> >>>>>>>>>>>> On Fri, Mar 4, 2011 at 11:50 AM, animesh arora
> > >> >> >>>>>>>>>>>> <animesharora...@gmail.com> wrote:
> >
> > >> >> >>>>>>>>>>>>> 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): Starting activity: Intent
> {
> > >> >> >>>>>>>>>>>>> action=android.intent.action.MAIN
> > >> >> >>>>>>>>>>>>> categories={android.intent.category.LAUNCHER}
> > >> >> >>>>>>>>>>>>> flags=0x10200000
> >
> > >> comp={com.android.contacts/com.android.contacts.DialtactsActivity} }
> > >> >> >>>>>>>>>>>>> I/ActivityManager( 1650): Displayed activity
> >
> > ...
> >
> > read more ยป
>
> --
> unsubscribe: android-porting+unsubscr...@googlegroups.com
> website: http://groups.google.com/group/android-porting
>

-- 
unsubscribe: android-porting+unsubscr...@googlegroups.com
website: http://groups.google.com/group/android-porting

Reply via email to