[android-developers] Re: Communicate with GSM modem

2012-02-27 Thread Tiago Teixeira
I'm sorry, and thanks for your answer. On Feb 24, 6:21 pm, Kristopher Micinski krismicin...@gmail.com wrote: From the Android SDK this ins't remotely possible.. If you want to do this you'd have to modify the RIL at system level. If you want to do this, this is the wrong list to ask, as this

[android-developers] Re: Communicate with GSM modem

2012-02-24 Thread Tiago Teixeira
Thanks for your answer. But what I'm trying to do is to communicate with the modem, send text commands to it over a GSM call and receive the response data. How can I use the Android RIL? Thanks in advance! On Feb 24, 7:52 am, Tor tor.hough...@gmail.com wrote: You need to read up on the

Re: [android-developers] Re: Communicate with GSM modem

2012-02-24 Thread Kristopher Micinski
From the Android SDK this ins't remotely possible.. If you want to do this you'd have to modify the RIL at system level. If you want to do this, this is the wrong list to ask, as this list is for developing applications with the Android SDK. kris On Fri, Feb 24, 2012 at 3:37 AM, Tiago Teixeira

[android-developers] Re: Communicate with GSM modem

2012-02-23 Thread Tor
You need to read up on the Android RIL (Radio Interface Layer) if you want to communicate directly with the modem (e.g. send AT commands). But if all you want to do is send and receive SMS, you can do that using the SmsManager class. e.g.