Re: [android-porting] Porting FM In Android Along With The Application

2012-04-22 Thread halli manjunatha
Hi Ranganath, Which FM framework you are using?.. seems this error message is not from TI's FM framework and more like ST Ericsson's FM solution Anyway this error message indicates you dont have the Vendor specific handlers required by the framework.(like FM framework calls JNI layer for FM

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-19 Thread Ranganath TM
Hi Manjunath, When I lunch My FM RX application it is giving me the error as vendor registration failed. In JNI file *android_fmradio.cpp In the below function,* * * // if we haven't registred the library yet do it if (!session_p-isRegistered) { session_p-vendorMethods_p =

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-18 Thread Ranganath TM
Hi Manjunath, I am able to switch on my device, Able to set it in to RX mode, when try to scan the frequency I am getting the following error, *vidioc_get_ext_ctrls: Id = 8001010,ext_ctrl-ctrl_class = 98VIDIOC_G_EXT_CTRLS:error!!* continously. Thanks, Ranga On Tue, Apr 17, 2012 at

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-18 Thread halli manjunatha
Ranganath, Does your driver supports ioctl VIDIOC_S_HW_FREQ_SEEK? seems its not. Thing is FM JNI calls this v4l2 ioctl when you do seek from the GUI. Can you give me the link to your driver so that we can verify this. If your driver is not supporting VIDIOC_S_HW_FREQ_SEEK ioctl then need to

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-17 Thread Ranganath TM
Hi Manjunath, Do you Know In android how to do library registration, I am getting an error library not yet registered, For example I want register libfmradio.so where to make it, please help in resolving these issue. Thanks, Ranga On Fri, Apr 13, 2012 at 10:37 AM, Ranganath TM

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-13 Thread Ranganath TM
Hi Manjunath, Now I am able to build my driver framework and application on our board, The device is getting opened and Firmware is downloaded, can you *tell me the command in terminal to open the FM Module and make it running*, For example to enable *WIFI I am using svc wifi enable.* And

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-09 Thread halli manjunatha
Hi Ranganath, Sorry for delayed response. Even I never used this app on Eclipse. But you can try it by removing the dependicies of JNI layer in FM RX JAVA files (FM/FmRxApp/src/com/ti/fmrxapp/FmRxApp.java). Regards Manju On Mon, Apr 2, 2012 at 12:22 AM, Ranganath TM ranganath...@asmaitha.com

Re: [android-porting] Porting FM In Android Along With The Application

2012-04-06 Thread Ranganath TM
Hi Manjunath, Thanks for your time, I want to add the FMRXAPP to eclipse, I am not getting how to make it, because the Android SDK does not contain any FM Api's, please guide to resolve this issue. Thanks, Ranga On Fri, Mar 30, 2012 at 8:43 PM, halli manjunatha hallima...@gmail.comwrote:

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-30 Thread Ranganath TM
Hi Manjunath, can you please tell the .mk to add kfmapp so that I can build it. Thanks, Ranganath.T.M On Wed, Mar 28, 2012 at 4:17 AM, halli manjunatha hallima...@gmail.comwrote: Just build you FM V4L2 driver as part of the your kernel and boot the board. Once after booting the board you

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-30 Thread halli manjunatha
The above mentioned link has kfmapp.c kfmapp.h and Android.mk copy all these things in to a folder. In the parent folder within which this kfmapp folder is present you have to have below line to use the Android.mk of kfmapp. include $(call first-makefiles-under,$(call my-dir)) I think this will

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-29 Thread halli manjunatha
Just build you FM V4L2 driver as part of the your kernel and boot the board. Once after booting the board you will have /dev/radio0 entry for your FM radio. Seems you need to change the /dev/radio0 permissions to 666 you can use the kfmapp (V4L2 compliant FM test application) at below location

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-27 Thread Ranganath TM
Hi Manjunatha, Thanks for your support, My FM driver is V4L2 complaint driver, can you please explain me where to modify, how can I proceed further. Thanks, Ranganath On Wed, Mar 21, 2012 at 9:12 PM, halli manjunatha hallima...@gmail.comwrote: Hi Ranganath, I dont know about the AW chip

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-23 Thread halli manjunatha
Hi Ranganath, The complete source code is at below location http://git.omapzoom.org/?p=platform/hardware/ti/wpan.git;a=tree;f=tools/FM;h=3f950c8b2e0cae5f540caabb58a7f114cc78bb8f;hb=bebfa00ede52e48e205c9c8de4012b52184a9214 Regards Manju On Thu, Mar 22, 2012 at 2:20 AM, Ranganath TM

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-23 Thread john118kimo
Hi Manju, Could you share the SOP to build source code as SDK if available ? Thanks in advance. Regards, John Lee --- 12/3/22 (四),halli manjunatha hallima...@gmail.com 寫道: 寄件者: halli manjunatha hallima...@gmail.com 主旨: Re: [android-porting] Porting FM In Android Along With The Application 收件者

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-22 Thread Saravanaperumal Annamalai
Hi Ranganath, You might also check this link if the FM chip is Si Labs one. http://mmbtools.crc.ca/content/view/53/33/ Regards Saravana On Wed, Mar 21, 2012 at 12:37 AM, halli manjunatha hallima...@gmail.comwrote: Hi Ranga, As for I know you wont find a standard API set

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-22 Thread halli manjunatha
Hi Ranganath, I dont know about the AW chip but you can use the above mentioned framework for your chip with little modifications as below Is your FM driver is a V4L2 compliant driver? if yes then you can use the complete FM package as is without much modifications If your FM driver is not a

Re: [android-porting] Porting FM In Android Along With The Application

2012-03-22 Thread Ranganath TM
Hi Manju, Can you send the path of Android FM Android application, so that I can analyze the complete flow from application layer to the kernel, And I can get better idea to implement. Thanks, Ranga On Wed, Mar 21, 2012 at 9:12 PM, halli manjunatha hallima...@gmail.comwrote: Hi Ranganath, I

[android-porting] Porting FM In Android Along With The Application

2012-03-20 Thread Ranganath TM
Hi All, I am trying to port an FM in android GB, along with my application for AWNH580(Azurewave FM hardware module), but to write an application I don't have any specific API. please help to write an application and to port the FM module. Thanks, Ranga -- unsubscribe: