5 messages in com.googlegroups.android-internals[android-internals] Re: Make and rece...
FromSent OnAttachments
KT21 Apr 2008 14:08 
KT22 Apr 2008 12:36 
ruckuus22 Apr 2008 20:20 
KT25 Apr 2008 10:46 
ruckuus26 Apr 2008 02:06 
Subject:[android-internals] Re: Make and receive phone calls?
From:ruckuus (ruck@gmail.com)
Date:04/22/2008 08:20:03 PM
List:com.googlegroups.android-internals

Hi, I ported android on i-MX31L board. Now i am working on how does android use ppp stack to do GSM related functions. Anyway, smartphones use GSM as modem, my assumption is, once you can do PPP connection to the GSM module, Android can make a call. If you need to do hack with PPP, you can try first from android console: # /system/bin/pppd /dev/ttyACM0 460800

/dev/ttyACM0 is modem device, make sure it is available in your /dev/ directory 460800 is baud rate used with the modem.

Check the init.rc file inside /etc directory, there are lines pointed to :

pppd_gprs { #exec /system/bin/pppd exec /etc/init.gprs-pppd args { 0 /dev/omap_csmi_tty1 # this must be modem device, you can change to your own modem 1 debug 2 dump

Unfortunately, the result is very far from my expectation. Sometimes, it shows me errors, sometimes it just blank and nothing happen. :(

Ok I guess my question is, what needs to be done to make and receive phone calls once we have Android ported on to a real target?

On Apr 21, 2:08 pm, KT <keh@gmail.com> wrote:

Hi All,

I have seen posts that said people successfully ported Android kernel to real targets. If so, has anyone tried to get the Android telephony component to work on real hardware i.e successfully made/received phone calls?