[android-developers] Re: FM radio Android Application Developement

2012-11-29 Thread bob
I was looking at the compatibility, and it only works with a few of my devices. So, it may require something special. I don't know what that special something is though.

[android-developers] Re: FM radio Android Application Developement

2012-11-28 Thread Karunakaran Vikash
Sorry Bob... U r rite,,, without an FM radio module in device.. we can implement it... But we can add a new device and writing a driver in kernel to work with the android . am i rite ?? On Monday, November 26, 2012 9:01:19 PM UTC+5:30, bob wrote: Well, the first step would be to

[android-developers] Re: FM radio Android Application Developement

2012-11-26 Thread bob
Well, the first step would be to buy it and see if it actually works. If it does, *then* you might ask how he made it. On Wednesday, November 21, 2012 11:07:12 PM UTC-6, Karunakaran Vikash wrote: ya ,, this is an External Application only na.. then how he can made it... ?? Is there any

[android-developers] Re: FM radio Android Application Developement

2012-11-21 Thread Karunakaran Vikash
thank you :) On Wednesday, November 21, 2012 10:57:52 AM UTC+5:30, Karunakaran Vikash wrote: Hi , I need to create a FM radio android application , is there any api or methods for developing this... anything available means ,just drop me a mail .. Any useful links , please update

[android-developers] Re: FM radio Android Application Developement

2012-11-21 Thread bob
This guy seems to have done it: https://play.google.com/store/apps/details?id=com.mikersmicros.fm_unlockhl=en On Tuesday, November 20, 2012 11:27:52 PM UTC-6, Karunakaran Vikash wrote: Hi , I need to create a FM radio android application , is there any api or methods for developing

[android-developers] Re: FM radio Android Application Developement

2012-11-21 Thread Karunakaran Vikash
ya ,, this is an External Application only na.. then how he can made it... ?? Is there any other way for it... ? On Wednesday, November 21, 2012 10:57:52 AM UTC+5:30, Karunakaran Vikash wrote: Hi , I need to create a FM radio android application , is there any api or methods for

[android-developers] Re: Fm Radio

2010-12-20 Thread wolf
thanks mr. Howard for your time, i don't remember what is HCI commands and i2s, can you help me ? hmmm, and is need to have this chip in the device ? and how i can use it ? via assembly language? i can't configure the BT or WLAN to use it and receive low frequency ? On Dec 19, 7:29 pm, Howard M.

[android-developers] Re: Fm Radio

2010-12-20 Thread wolf
thanks mr bob for your time, can i ask you what job you have? if you don't want don't tell me :) On Dec 19, 11:53 pm, Bob Kerns r...@acm.org wrote: I'm not about to spend my time on producing an example or even tracking it down, as I just don't have the time. But it looks like Gaz Davidson

[android-developers] Re: Fm Radio

2010-12-20 Thread wolf
thanks mr Gaz Davidson for your time, you help a lot too On Dec 19, 9:41 pm, Gaz Davidson garethdavid...@gmail.com wrote: The FM radio app which everyone is using was apparently created by Code Aurora (sourcehttps://www.codeaurora.org/gitweb/quic/la/?p=platform/packages/apps/F...),

[android-developers] Re: Fm Radio

2010-12-19 Thread wolf
do you can make me an a example code ? and a sketch with a example phone how it works ? can i use the bluetooth as an antenna (yes i know it's have own API and it's works on 2.4 Ghz and the radio usually 87.5 to 108.0 MHz) ? do you know how to use the headphones as antenna or wi- fi or whatever ?

[android-developers] Re: Fm Radio

2010-12-19 Thread Howard M. Harte
The FM radio receiver is built in to the same chip that does the WLAN and BT. It is actually a third radio in those chips. This is true of the Droid X, which uses the TI WL1271 BT/WLAN/FM chip, and many of the HTC and Samsung devices use the Broadcom BCM4329, which also has BT/ WLAN/FM. I think

[android-developers] Re: Fm Radio

2010-12-19 Thread Gaz Davidson
The FM radio app which everyone is using was apparently created by Code Aurora (sourcehttps://www.codeaurora.org/gitweb/quic/la/?p=platform/packages/apps/FM.git;a=tree;f=src/com/quicinc;h=05bfe62320ba5975febb002c14c761e4b074f04d;hb=HEAD), adapted up by the MiUI team

[android-developers] Re: Fm Radio

2010-12-19 Thread Bob Kerns
I'm not about to spend my time on producing an example or even tracking it down, as I just don't have the time. But it looks like Gaz Davidson has tracked one down -- though it's different than the app on my phone, which appears to have been created by HTC. This is good news for you, actually,

[android-developers] Re: Fm Radio

2010-12-18 Thread wolf
i don't need streaming radio, thanks mr Brill for your time i wish you good luck for your (programming) problems On Dec 17, 4:08 pm, Brill Pappin br...@pappin.ca wrote: If you mean streaming radio, then you need to be looking up streaming audio in Android. Those apps will use some

[android-developers] Re: Fm Radio

2010-12-18 Thread wolf
thanks again mr bob, and how i can to view the code from FM Radio app? i wish you good luck from everything you do! On Dec 17, 5:06 pm, Bob Kerns r...@acm.org wrote: By the way, I got my build with the FM Radio app here: http://tinyurl.com/modoco-kitchen-with-fm (that's a shortened link

Re: [android-developers] Re: Fm Radio

2010-12-18 Thread Mark Murphy
On Sat, Dec 18, 2010 at 4:13 PM, wolf wolfy1...@gmail.com wrote: thanks again mr bob, and how i can to view the code from FM Radio app? I am not aware of any FM Radio apps for Android that are open source. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] Re: Fm Radio

2010-12-18 Thread Bob Kerns
Me, either. But I'll speculate as to how it works. Phones are radios. The radio signal is processed and decoded into audio, and fed into the audio streams. The mechanisms for this are open source. The FM radio signal is a radio signal that is processed and decoded into audio. I bet it works much

[android-developers] Re: Fm Radio

2010-12-17 Thread wolf
thank you mr bob On Dec 16, 1:58 pm, Bob Kerns r...@acm.org wrote: Well, I doubt HTC is going to tell you, so your best approach, I think, would either to see what the people who integrated it on to Nexus One did, or to reverse engineer the com.htc.fm app yourself. I suspect that's more

[android-developers] Re: Fm Radio

2010-12-17 Thread Brill Pappin
If you mean streaming radio, then you need to be looking up streaming audio in Android. Those apps will use some sort of converter to encode the audio and send it out via socket to the app. the app will simply connect and play. If you are looking for a streaming server, try Red5. - Brill --

[android-developers] Re: Fm Radio

2010-12-17 Thread Bob Kerns
By the way, I got my build with the FM Radio app here: http://tinyurl.com/modoco-kitchen-with-fm (that's a shortened link to android.modoco.com). On Dec 17, 1:26 am, wolf wolfy1...@gmail.com wrote: thank you mr bob On Dec 16, 1:58 pm, Bob Kerns r...@acm.org wrote: Well, I doubt

[android-developers] Re: Fm Radio

2010-12-16 Thread wolf
thanks mr brill, you are closer than the other answer, i want to know how the FM Radio app is work, the code, not how to use it in my programs. On Dec 15, 3:07 pm, Bob Kerns r...@acm.org wrote: I'm reasonably sure he means FM radio. Like the FM Radio app that showed up on my Google Nexus One

[android-developers] Re: Fm Radio

2010-12-16 Thread Bob Kerns
Well, I doubt HTC is going to tell you, so your best approach, I think, would either to see what the people who integrated it on to Nexus One did, or to reverse engineer the com.htc.fm app yourself. I suspect that's more trouble than it's worth, as the result won't be something that's supported,

[android-developers] Re: Fm Radio

2010-12-15 Thread wolf
thanks again!!! On Dec 14, 9:48 pm, FrankG frankgru...@googlemail.com wrote: I'm in doubt that he will get an answer for this question, even in more fiirmware related groups. On 14 Dez., 11:56, Mark Murphy mmur...@commonsware.com wrote: On Tue, Dec 14, 2010 at 4:29 AM, wolf

[android-developers] Re: Fm Radio

2010-12-15 Thread Bob Kerns
I'm reasonably sure he means FM radio. Like the FM Radio app that showed up on my Google Nexus One after updating with a MoDoCo build, which uses the headset as an antenna, and the phone really does operate as an FM radio receiver. Like I'm listening to right now. Apparently the radio chip

[android-developers] Re: Fm Radio

2010-12-14 Thread wolf
thanks for the response, no i mean how it's works, not how i use API or the FM Radio from android On Dec 14, 5:18 am, Brill Pappin br...@pappin.ca wrote: I don't remember seeing any API for FM Radio... do you mean steaming radio? - Brill -- You received this message because you are

[android-developers] Re: Fm Radio

2010-12-14 Thread wolf
thanks mr. mark, but i don't want to use it via Android SDK but i want to know how it's works On Dec 13, 11:04 pm, Mark Murphy mmur...@commonsware.com wrote: On Sat, Dec 11, 2010 at 8:31 AM, wolf wolfy1...@gmail.com wrote: how the fm radio it works on android phones ? i mean, can you send

Re: [android-developers] Re: Fm Radio

2010-12-14 Thread Mark Murphy
On Tue, Dec 14, 2010 at 4:29 AM, wolf wolfy1...@gmail.com wrote: thanks mr. mark, but i don't want to use it via Android SDK but i want to know how it's works There is no FM radio in Android, period. Some Android devices may have FM radio capability, via firmware modifications made by those

[android-developers] Re: Fm Radio

2010-12-14 Thread FrankG
I'm in doubt that he will get an answer for this question, even in more fiirmware related groups. On 14 Dez., 11:56, Mark Murphy mmur...@commonsware.com wrote: On Tue, Dec 14, 2010 at 4:29 AM, wolf wolfy1...@gmail.com wrote: thanks mr. mark, but i don't want to use it via Android SDK but i

[android-developers] Re: Fm Radio

2010-12-13 Thread Brill Pappin
I don't remember seeing any API for FM Radio... do you mean steaming radio? - Brill -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Fm Radio

2010-12-13 Thread Gulfam
There is no API available for FM radio in android, but you can play audio from stream. and there is a tutorial available in Android API demo to Play audio from stream. Gulfam On Dec 11, 6:31 pm, wolf wolfy1...@gmail.com wrote: how the fm radio it works on android phones ? i mean, can you send

[android-developers] Re: FM Radio

2009-01-09 Thread Dave Sparks
There is no platform support for this yet. You should take this up in android-platform. On Jan 8, 11:58 am, jas_h jasleen_pah...@yahoo.com wrote: Hi, Is there a FM receiver or transmitter application available on the Android platform? What is preferred - HCI or I2C? What about RDS?