[android-porting] suspend/resume error on OMAP3 EVM with rowboat sources

2010-11-24 Thread Arun Joseph
Hi all, I was trying out suspend/resume on OMAP3 EVM with roaboat port [arowboat.org]. When I try "echo mem > /sys/power/state", I see LCD screen getting off and the following messages on android echo mem >/sys/power/ state request_suspend_state: sleep (3->3) at 128797488539 (2000-01-01 00:02:07

[android-porting] camera can't enter video mode

2010-11-24 Thread ibsd
hi: when camera switch preview to video mode, some error happens, some message as follow: V/videocamera( 292): initializeRecorder I/ActivityManager( 79): Displayed activity com.android.camera/.VideoCamera: 887 ms (total 887 ms) D/vold( 46): [UEVENT] Sq: 836 S: uids A: 0 P: /kernel/uids/10

[android-porting] Re: After Kernel patching

2010-11-24 Thread Stefan
Anybody? On 23 Nov., 11:08, Stefan wrote: > How can I get the android filesystem or do I have to build > it on my own? > > On 22 Nov., 14:07, Stefan wrote: > > > Hi, I just patched a 2.6.33 Kernel for android and my hardware (based > > on i.MX25) > > > My question is now how I can get the neede

[android-porting] Data Connection via IP Interface

2010-11-24 Thread mshahbazansari
Hi all, Hope you are doing fine. I wanted to get some of you guys help here. I have telephony stack which is in software and I am bringing it up with Android Froyo. The setup is that I run Android on a Linux machine and also the telephony stack on the same machine. Android RIL is communicating to

[android-porting] porting to pxa310, ov3640

2010-11-24 Thread Santoshkumar kammar
Hi is ther anyone worked on porting linux 2.6.29 to a smartphone with pxa310 & which uses ov3640 image sensor. -- With Regards, Santoshkumar -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Building/test a new hal implementation

2010-11-24 Thread Dudero
Hello Deva, thanks for your advise! To my last question: Yes, I mean how to test a hal implementation on real target - in my case the gps stub: "libgps.so" Which possibilities do i have? Best Regards, Andreas Hornsteiner On 23 Nov., 18:21, Deva R wrote: > >how it is possible to build only

[android-porting] Re: Problems porting Android OS onto a new platform

2010-11-24 Thread Brad Davis
What you may want is an embedded LInux kernel driver writer. (I've done an Android port but it only included special screen handling, not other hardware. I have done drivers for other OS's.). On Nov 23, 11:25 am, Chilston777 wrote: > Hi everyone, > > We are desperatley trying to port the Androi

Re: [android-porting] Data Connection via IP Interface

2010-11-24 Thread Robert Greenwalt
If you have a network interface up and can access it from linux, the framework should also be able to access it. You may not have DNS hooked up, but you can try hitting a simple site using its ip address instead of hostname to check that. Another potential problem is routing - do you have a defau

Re: [android-porting] Re: Building/test a new hal implementation

2010-11-24 Thread Deva R
You can write a small native test app (in cpp), link to libgps.so and check libgps services., you can refer our sample camera HAL test code., http://git.omapzoom.org/?p=platform/hardware/ti/omap3.git;a=tree;f=test/CameraHal;hb=refs/heads/froyo camera tests are full fledged and pretty huge, and u

Re: [android-porting] Re: Problems porting Android OS onto a new platform

2010-11-24 Thread Deva R
based on the processor,on-board peripherals used in your smartphone, you can leverage most of the code from kernel/android/ and other project communities.. this place can be of some assistance when u r blocked with specific issue. On Wed, Nov 24, 2010 at 11:35 PM, Brad Davis wrote: > What you ma

Re: [android-porting] Re: After Kernel patching

2010-11-24 Thread Deva R
Not much idea about i.MX25 android ports, but if possible, get an i.MX android port from say, http://www.freescale.com/webapp/sps/site/overview.jsp?code=CW_BSP_IMX and should be relative easier to make it work on i.MX25 rather than fresh porting.. On Wed, Nov 24, 2010 at 1:57 PM, Stefan wrote:

[android-porting] Android UI performance

2010-11-24 Thread Colin
Hi there, We are trying to improve Android UI performance. After using Copybit module, UI performance is still not satisfied. Here comes 2 questions. 1. Will the UI be faster if we got a HW OpenGL module? 2. Our 2D engine can queue many commands and finish them sequentially while CPU is busy on t

[android-porting] froyo on n810

2010-11-24 Thread fishman
Hello I am looking at porting froyo to the nokia n810. I have one laying around and it needs new life. I have the source and guessing I need the omap kernel? Any recommendations or suggestions on how to proceed? I'm guessing it will be a little more difficult than getting froyo on a via motherb

[android-porting] Re: Interfacing native code to hardware functions

2010-11-24 Thread jon.schell
Yes, I have the right coupling from the app to the native code. Yes, I found out about using the sysfs entry. The problem is that interface is too slow. I believe that I need to send an RPC call directly to the hardware layer, and that interface is already defined, but I can't figure out how to

Re: [android-porting] froyo on n810

2010-11-24 Thread Deva R
Awesome.. >I have the source and guessing I need the omap kernel? Any >recommendations or suggestions on how to proceed? i would suggest to have a look on prior work done on android w/ N8x0 devices., (http://www.google.com/search?q=n810+android ) for resources, http://elinux.org/Android_on_OMAP

Re: [android-porting] Android UI performance

2010-11-24 Thread Deva R
>Neither "sleep" nor "while loop" is good solution. >Is there any suggestion for this? how about waiting on a semaphore after issuing Copybit and signaling it once 2D-engine completes? On Wed, Nov 24, 2010 at 9:38 PM, Colin wrote: > Hi there, > We are trying to improve Android UI performance. >

[android-porting] Re: Interfacing native code to hardware functions

2010-11-24 Thread Chris Stratton
Can you post the definition of the interface you want to talk to? Do you have any actual evidence that using this other interface will be faster? (Often the way to speed things up when the interface itself is slow is to hand off larger units of work at a time) On Nov 24, 2:10 pm, "jon.schell" w

[android-porting] Re: android-2.2.1 cannot get AP SSID after wifi restart

2010-11-24 Thread Elvis Dowson
Hi, In summary, what I can observe is as follows: a. First AP association attempt works fine, and I'm able to browse the internet. However, an extra AP with the same SSID gets displayed in the list of scanned APs. b. After turning off and turning back the wifi on from the settings control pa

[android-porting] How to create a temporary file

2010-11-24 Thread Chih-Wei
Hi, I want to create a temporary file in my jni code. I hope to use the standard C function FILE *tmpfile(void); However, it failed. I believe it is because the Android filesystem doesn't have the directory /tmp. Is there any reliable way to create a temporary file in Android? What's the suggest