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-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

[android-porting] How to run insmod during boot-up?

2011-03-03 Thread Lay
Hi Android Porters, I would like to insmod 2 driver modules during boot-up. I tried adding the following lines to init.rc insmod /system/lib/modules/rt2x00lib.ko insmod /system/lib/modules/rt2x00usb.ko They do not seem to work. However, if I run those lines on the command line, they work. Can so

[android-porting] Re: Compiled code size of ralink wifi driver too huge

2011-03-03 Thread Lay
Thank you for the tip. It is helpful. On Mar 3, 10:48 pm, Deva R wrote: > by any chance you passed "-static" flag to gcc? > build library with "make showcommands" and check the flags passed > during compilation. > > > > On Tue, Mar 1, 2011 at 3:37 PM, Lay wrote: > > Hi Android porters, > > > I a

Re: [android-porting] Re: Reverse landscape orientation in Froyo

2011-03-03 Thread Dianne Hackborn
The patch is Gingerbread. Available, at your friendly neighborhood Android git repository. :) On Thu, Mar 3, 2011 at 8:20 PM, Soumya wrote: > > Hi, > > Is there any patch available using which we can support the reverse > landscape orientation is Froyo for framework. If so can someone point > o

[android-porting] Re: Reverse landscape orientation in Froyo

2011-03-03 Thread Soumya
Hi, Is there any patch available using which we can support the reverse landscape orientation is Froyo for framework. If so can someone point out the link in GIT maybe. Thank you, Soumya -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/androi

Re: [android-porting] Re: Reverse landscape orientation in Froyo

2011-03-03 Thread Chinmay S
Hi, The link just contains confirmation that landscape(270) is NOT supported on Froyo. http://groups.google.com/group/android-developers/browse_thread/thread/3ae9364ee6674c8f By flipping the graphics, i meant the drawables or any rendering you have onscreen can be designed in a flipped manner. So

[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

Re: [android-porting] Compiled code size of ralink wifi driver too huge

2011-03-03 Thread Deva R
by any chance you passed "-static" flag to gcc? build library with "make showcommands" and check the flags passed during compilation. On Tue, Mar 1, 2011 at 3:37 PM, Lay wrote: > Hi Android porters, > > I am trying to port ralink wifi rt2870sta.ko into Android v2.1. After > compiling the driver w

[android-porting] How to setup oprofile for the emulator?

2011-03-03 Thread 某因幡
Hi, I recompiled goldfish kernel with oprofile support. And then I did the following: 1. push oprofiled and opcontrol to /data/local and chmod, export PATH 2. pull /proc/kallsyms and find out _text and _etext 3. echo > /data/vmlinux 4. opcontrol --vmlinux=/vmlinux --kernel-range=${_text},${_etext}

[android-porting] Camera preview frame rate very low

2011-03-03 Thread Ananthapadmanaban
Hi All, Using camera application available in the froyo build, I was able to stream VGA frame at 7 fps maximum. But my sensor streaming frame rate at 30 fps. How to optimize the camera application ? *Test environment: * Board : Omap3evm board. Application : Default camera application c

[android-porting] Re: Reverse landscape orientation in Froyo

2011-03-03 Thread Soumya
I think it will be ok, only if the touch also works along with the flipped graphics. Can you please let me know how to flip the graphics? I checked the link you mentioned but could not find the process in which the objective could be achieved. Thank you. On Mar 3, 4:27 pm, Chinmay S wrote: > Hi

[android-porting] Re: Reverse landscape orientation in Froyo

2011-03-03 Thread Soumya
Thank you for the response. By default the window gets rotated to 0, 90 and 270 in Froyo. Does that mean that the setRequestedOrientation call to freeze the screen from rotating in reverse landscape mode or right-landscape or 270 degree is not supported in Froyo. On Mar 3, 4:12 pm, Dianne Hackbo