[android-porting] Re: how to use the rild on OMAP2430

2008-12-17 Thread Nimit Manglick
Hi Teju, The toolchain u r mentioning here arm-none-linux-gnueabi-gcc is NOT the android toolchain which is available in mydroid/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin as arm-eabi-gcc . The toolchain you are mentioning here is Open Source Code Sorcery toolchain, by using it I am also

[android-porting] Re: how to use the rild on OMAP2430

2008-12-15 Thread David Turner
use adb logcat -b radio to display the radio log. this includes traces from both the reference-ril library and the GSM stack that talk to it (including AT commands). that should help you diagnose the problem much more easily. It's also easy to add additionnal traces to reference-ril if you need

[android-porting] Re: how to use the rild on OMAP2430

2008-12-11 Thread Mikkel Christensen
Hi, The command for starting rild is: /system/bin/rild -l /system/lib/LIBNAME.so -- -d /dev/ttyS0 where LIBNAME could e.g. be libreference-ril.so This requires that you have a modem on /dev/ttyS0 connected to your OMAP2430 hardware and a RIL library that fits that modem. /Mikkel On Dec 9,

[android-porting] Re: how to use the rild on OMAP2430

2008-12-11 Thread teju
hi, my modem is connected to ttyS2 port, ttyS0 is used as console, /system/bin/rild -l /system/lib/librild.so -- -d /dev/ttyS2 command works fine, but when i try to make a call from my dialer app, i dont get any call. to confirm with the serial port i tested the ttyS2 port with sample uart

[android-porting] Re: how to use the rild on OMAP2430

2008-12-11 Thread teju
sorry v used libreference-ril.so only .. not librild.so Sean McNeil wrote: librild.so is the wrong library. I'm amazed you didn't get an error. You should be using the ril implementation library such as /system/lib/libreference-ril.so. teju wrote: hi, my modem is connected to ttyS2