Spirit FM radio App and Cyanogenmod 7.2 - Optimus One, P500, V General

I had a couple of questions about using Spirit FM Radio app on CM 7.2. And I would like to know in detail about it.
Firstly, When I ran the Spirit app on CM 7.2 i noticed that it doesn't switch on the Bluetooth. Does that mean that it uses the internal Broad com FM chip instead of Bluetooth to receive FM transmissions just like in the LG stock FM radio app?
Will the Spirit FM app still run properly if I UN-install the CM 7.2 Stock FM app? Or does it need the CM 7.2 Stock FM app to run properly?
In the setting of the app, within audio, I saw various options like cyanogen Mod, LG, lge-msm7x27,etc. Even tough i didn't see any difference in quality while going through different options. Which would be the ideal option for us and What do these options do?

CM9 hasn't got a radio am I right? (Btw I'm new to the forum I couldn't find a topic to write this I'm sorry

What phone are you using?

When Bluetooth is enabled FM is enabled too because they locate at the same chip. It's the easiest way to enable FM and so is CM radio doing. Spirit FM (and stock LG) does it little bit harder by only enabling FM thus saving some starting time and battery (battery part is not a 100% fact though, only my own speculation).
You can remove CM radio, it is not needed.
Recommended method by author in Spirit is CyanogenMod. I don't know exactly what are the differences between different methods but stick with CyanogenMod.

Spirit FM does use Bluetooth, only the icons aren't changed that's all.
Sent from my LG-P500 using xda premium

4silvertooth said:
Spirit FM does use Bluetooth, only the icons aren't changed that's all.
Sent from my LG-P500 using xda premium
Click to expand...
Click to collapse
I might be wrong but if Bluetooth is turned on i see no indication, not only in status bar, settings, no device discovers it (visible), i think i need an app to check the components...
Will check back whit the answer
Edit: It dose use bluetooth

moby_test said:
I might be wrong but if Bluetooth is turned on i see no indication, not only in status bar, settings, no device discovers it (visible), i think i need an app to check the components...
Will check back whit the answer
Edit: It dose use bluetooth
Click to expand...
Click to collapse
How did u finally come to that conclusion that it does use Bluetooth? And if it does... Does that mean that there is no big difference in the way Spirit, Cyanogen mod and LG FM radio app works?

I have my own thread for questions, 1st link in my sig: http://forum.xda-developers.com/showthread.php?p=13379669
And I respond to emails and PMs, but sometimes respond on my thread for all to benefit. Or just let me know a thread's been opened...
See below for answers:

sweettaniyaa said:
Firstly, When I ran the Spirit app on CM 7.2 i noticed that it doesn't switch on the Bluetooth. Does that mean that it uses the internal Broad com FM chip instead of Bluetooth to receive FM transmissions just like in the LG stock FM radio app?
Will the Spirit FM app still run properly if I UN-install the CM 7.2 Stock FM app? Or does it need the CM 7.2 Stock FM app to run properly?
In the setting of the app, within audio, I saw various options like cyanogen Mod, LG, lge-msm7x27,etc. Even tough i didn't see any difference in quality while going through different options. Which would be the ideal option for us and What do these options do?
Click to expand...
Click to collapse
Copied on my thread, because I did a lot of thinking and typing...
Yes you can remove the CM FM app.
On CM7, the default CyanogenMod audio method is generally best. It's the same method the CM7 FM app uses, so it's the most likely to work well, especially when dealing with things like phone calls coming in when FM is on.
If a CM ROM for any phone has a CM FM app, this method should work, but unfortunately that's not yet the case with CM9 ROMs. so low level methods are needed for now on CM9, and there are often issues, and many CM9 ROMs just don't support FM audio routing yet, or I haven't figured them out.
Re: Bluetooth: my app has many ways to access FM chips.
- The first method I supported was via Bluetooth (the HCI API), like the CM FM app. Like it, my app can run commands using the command line hcitool utility, and this is nice because my app can run without root/SU. But it's not too efficient, especially when using RDS where lots of data gets transferred.
- For better efficiency, with root, my app supports direct access to the HCI sockets, through a daemon, because apps don't have the privilege otherwise.
- But because many people were running stock or stock derived ROMs using the Broadcom proprietary BT stack, and I could find no way to send HCI commands with it, I created a "UART mode" that communicates directly with the Bluetooth/FM UART. The wireless part of Bluetooth is not switched on, which saves power. But this mode requires root (unless /dev/ttyHS0 or whatever is accessible from an app), and only works if BT is off.
- A new access method is available now on stock and stock derived ROMs that run the proprietary Broadcom BT stack and that supports the stock LG FM app. This can work on stock, unrooted devices. In this mode the characteristics of the stock FM stack are unavoidable, both positive and negative.
The Broadcom proprietary BT stack has a special mode where Bluetooth is considered off, but FM is on. This enables the Bluetooth HCI "UART" to provide a path to control the FM part of the chip.
- There are different device driver access methods used for dedicated FM chips not contained in a BT/FM combo chip, but those don't apply to the P500.

OK for SGA?
Can I use this FM radio app for my Samsung Galaxy Ace? I have Ice Cream Sunday ROM installed.

donzzy said:
Can I use this FM radio app for my Samsung Galaxy Ace? I have Ice Cream Sunday ROM installed.
Click to expand...
Click to collapse
Off-topic, and you should ask on my thread anyway, or check post 2 of my thread. Please don't respond here.
Canned response now:
The Simpsons taught me that among Hemingway's words of wisdom was:
“The shortest answer is doing the thing.”
IE, why don't you just try it ? It's free and only takes a minute or two I think.
There's even an intro that can be read and will give some useful information on configuration.
Then if you have trouble, you can come back, report it, and hope for an answer.

mikereidis said:
Copied on my thread, because I did a lot of thinking and typing...
Yes you can remove the CM FM app.
On CM7, the default CyanogenMod audio method is generally best. It's the same method the CM7 FM app uses, so it's the most likely to work well, especially when dealing with things like phone calls coming in when FM is on.
If a CM ROM for any phone has a CM FM app, this method should work, but unfortunately that's not yet the case with CM9 ROMs. so low level methods are needed for now on CM9, and there are often issues, and many CM9 ROMs just don't support FM audio routing yet, or I haven't figured them out.
Re: Bluetooth: my app has many ways to access FM chips.
- The first method I supported was via Bluetooth (the HCI API), like the CM FM app. Like it, my app can run commands using the command line hcitool utility, and this is nice because my app can run without root/SU. But it's not too efficient, especially when using RDS where lots of data gets transferred.
- For better efficiency, with root, my app supports direct access to the HCI sockets, through a daemon, because apps don't have the privilege otherwise.
- But because many people were running stock or stock derived ROMs using the Broadcom proprietary BT stack, and I could find no way to send HCI commands with it, I created a "UART mode" that communicates directly with the Bluetooth/FM UART. The wireless part of Bluetooth is not switched on, which saves power. But this mode requires root (unless /dev/ttyHS0 or whatever is accessible from an app), and only works if BT is off.
- A new access method is available now on stock and stock derived ROMs that run the proprietary Broadcom BT stack and that supports the stock LG FM app. This can work on stock, unrooted devices. In this mode the characteristics of the stock FM stack are unavoidable, both positive and negative.
The Broadcom proprietary BT stack has a special mode where Bluetooth is considered off, but FM is on. This enables the Bluetooth HCI "UART" to provide a path to control the FM part of the chip.
- There are different device driver access methods used for dedicated FM chips not contained in a BT/FM combo chip, but those don't apply to the P500.
Click to expand...
Click to collapse
Thank you for clearing it to me. But I don't know... something weird happened to me. I was using Spirit FM radio app whole day yesterday but the Blue-tooth icon never showed up. But today when tried the app again It has been showing the Blue-tooth icon. I don't get it. What changed? I tried re-booting and everything. Still the same.

Related

2.1 Rom Bluetooth simple secure pairing (SSP)

Hey all,
I have been using my Eris with a bluetooth Stereo for a quite a while, but when I rooted the phone over to a 2.1 ROM it started using Simple Secure Pairing (SSP) when authenticating the bluetooth headphones. My car stereo doesn't support this (its brand new too...).
So, the question is has anyone ever looked into disabling SSP and forcing it to use the old static key method of pairing in 2.1?
I am not adverse to diving in and doing the dev work, I just wanted to make sure someone hasn't already done it. If I do need to dive in does anyone know if its possible to disable it via a config file, or will I need to backport the bluez stack?
Thanks for all the great work,
traetox
I too am having this issue. Worked fine in 1.5 but ever since root it will play audio through pioneer head unit but phone won't connect. I will patiently await a fix.
-------------------------------------
Sent via the XDA Tapatalk App
Oh, so that's what's up.
I'm having a similar problem with my Jabra Cruiser bluetooth speakerphone/FM transmitter. What mine does, though, is it will connect and I can use it to listen to music and do the normal speakerphone functions like it normally would, but none of the media buttons will work anymore. It's not a huge inconvenience, since I mount my phone in the car anyway (long commute). It's only a problem if I need to have Google Navigation in the foreground but still want to change songs.
Patiently waiting. You devs are awesome, if you don't get enough sycophantic slobbering already.
ok, so I did some digging on mine and it turns out that I can pair with a simple bluetooth headset via the '0000' key. But the phone attempts to go through the full key negotiation to connect the "bluetooth headphones." So i can get audio via the headset negotiated connection, but it sounds awful without full AD2P.
I am getting a ROM kitchen setup and will try and map the 1.5 bluez stack onto the 2.1 source and see where that gets me.
Thanks for the input.
Thanks for working on this! I've tried to incorporate some of the Bluetooth files as well as the WLAN.ko from other roms into my Rom but have been unsuccesful. I am running damage control 2.08 that I ported. I was originally unable to get WiFi or Bluetooth to work until I copied the WLAN.ko from the oc patch now both work minus the phone. Don't know if this helps but figured i let you know. If you have those files from a 1.5 Rom I will try them in my port and let you know what the results are.
-------------------------------------
Sent via the XDA Tapatalk App
bt issues as well any fix
I have posted several times on this can not get an answer Have the same issues anyone with experience know what I can do?
Here is my situation I have driod eris ee2.1 on verizon before root I could auto connect bt to my pioneer avic d3 with phone audio only I had to manually connect media audio every time but I got used to it but since root I now can connect to media audio only and when I try to connect phone audio it dissconnects in less than a minute I am at a loss as to what to do thought maybe someone has experienced this and figured it out Thanks in advance.
suppliesidejesus said:
Oh, so that's what's up.
I'm having a similar problem with my Jabra Cruiser bluetooth speakerphone/FM transmitter. What mine does, though, is it will connect and I can use it to listen to music and do the normal speakerphone functions like it normally would, but none of the media buttons will work anymore.
Click to expand...
Click to collapse
I have a Jabra Crusier, and I'm having an issue with a lot of ROMs where I can not connect to it and stream music over bluetooth. I have found that Aloysius v6 Maps rom by Spencer Moore works well with the bluetooth thing. You may have to connect and disconnect a few times here and there to get it to connect, but it's been the best ROM for it. I used V11 Maps and it worked for a little while, but stopped connecting properly just recently.
There are a few known bugs with v6, but I'm fiddling with V11 to try and get the bluetooth to stay perm. Once I get it, I'll let Spencer Moore know and get him any new updates I come across.
Just an update. I am able to pair and connect to phone using white widow Rom.
-------------------------------------
Sent via the XDA Tapatalk App

FM Radio app RDS support (Spirit)

I've released version 2.0.2 of the "Spirit FM Radio" app. See my sig for the details post.
Best support is for CM7 ROMs with the CM FM app. My app supports RDS data on TI FM chips now, and more basic functionality on Broadcom FM chips. Works well on my HTC Legend and Desire HD, and I think should also work on Click/Tattoo.
I tested with the 240x320 resolution on an emulator.
works great 100% thanks, though it could do with a better GUI
Works perfect on my HTC Tattoo/Click with CM7. The GUI should be polished.
The HTC radio app could be a good reference.
Thanks!
bluetooth??
great app, but why do you need my bluetooth on?
please remove this feature or let me select it in a menù.
SycoLTH said:
great app, but why do you need my bluetooth on?
please remove this feature or let me select it in a menù.
Click to expand...
Click to collapse
radio is integreted on bt microchip, than when you active radio, you must active also bt
This is the right app I am looking for! Why should FM apps stick to headset? Now it is freedom from headset, only thing you need is something as antenna.
where can i find this app -??
kriout said:
where can i find this app -??
Click to expand...
Click to collapse
look at this thread http://forum.xda-developers.com/showthread.php?p=13379669

[Q] FM Transmitter Built-In to Vibrant?

Has anyone looked into this whole thing about there being FM Transmitter/Receivers being built into most Android phones(including ours)?
I was reading this article ==> http://forum.xda-developers.com/showthread.php?t=1092719 and I was curious. I wonder if I could use this to broadcast my music from my phone to my FM radio in my old car...
Any thoughts? (and yes I did search)
The vibrant doesn't have a functioning receiving FM module, let alone a transmitting FM module. Our hardware is missing a few key components to have a working FM tuner.
Sent from my SGH-T959 using XDA App
Ok. So what prompted this question was my coworker has an Epic and has a FM Radio hack on hisphone. Thought the phones were similar enough but then the Epic is the oddball out of the Galaxies.
Thanks for the answer

[APP] Dell Venue FM Radio App Request *SOLVED*

Is there an app or process to have a FM radio app for Dell venue?
As there was one back for Motorola Charm which didnt ship with Built in Radio App (FM) in Asia sets
I don't think the Venue has a built-in FM radio. I have tried several apps, including one or two that are supposed to work with the Streak 5, and have never had any success.
michaeljwestii said:
I don't think the Venue has a built-in FM radio. I have tried several apps, including one or two that are supposed to work with the Streak 5, and have never had any success.
Click to expand...
Click to collapse
thanks for the responce
but if I upgrate my stock rom with 2.3 rom posted here
will it help?
I don't think so, I don't think the Venue has the hardware for an FM radio.
The Venue uses a Broadcom BCM4329, which has:
Wifi 802.11 a/b/g/n
Bluetooth 2.1 + EDR
FM Radio (recieve and transmit)
Unfortunately, since android doesnt have a standardized method of interfacing with the radip: there's simply no support at the driver level.
The Streak 5 has limited radio support as there was a hack that enabled it, but the S5 uses the BCM4325.
All other dell devices use the BCM4329 and only the SPro has support for it.
It might be possible to hack the Streak Pro's support back onto the V (as they both run GB and use the same chip),
I intend to attempt to hackport the SPro's rom to the S5, and perhaps to the V in the summer.
But I have no idea if it'll work, much less getting the radio to work.
Officially, the SPro is the first dell device to officially recieve fm radio support.
TheManii said:
The Venue uses a Broadcom BCM4329, which has:
Wifi 802.11 a/b/g/n
Bluetooth 2.1 + EDR
FM Radio (recieve and transmit)
Unfortunately, since android doesnt have a standardized method of interfacing with the radip: there's simply no support at the driver level.
The Streak 5 has limited radio support as there was a hack that enabled it, but the S5 uses the BCM4325.
All other dell devices use the BCM4329 and only the SPro has support for it.
It might be possible to hack the Streak Pro's support back onto the V (as they both run GB and use the same chip),
I intend to attempt to hackport the SPro's rom to the S5, and perhaps to the V in the summer.
But I have no idea if it'll work, much less getting the radio to work.
Officially, the SPro is the first dell device to officially recieve fm radio support.
Click to expand...
Click to collapse
I found this somewhere
http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=http%3A%2F%2Fvn.fulltechreview.com%2F2012%2F04%2Ftat-ca-ve-dell-venue-root-up-rom-cai.html&act=url
prasad12ka4 said:
I found this somewhere
http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=http%3A%2F%2Fvn.fulltechreview.com%2F2012%2F04%2Ftat-ca-ve-dell-venue-root-up-rom-cai.html&act=url
Click to expand...
Click to collapse
I finally took the time to look at this, and the link provided provides a working FM Radio app. Go figure. It works, for the most part. The link is to the English translation of a Vietnamese page. There is a link to FM Radio for Dell Venue, which is a rar file on mediafire (http://www.mediafire.com/?ob6ot26eey5m7dh). The Google Translate thing screws up the link, so just use the one I posted. Inside the rar is two apk's and a file called fm_hcitool. I installed the one called 20110824SFR-MM.apk (not the one called Streak Radio) and it turned out to be Spirit FM - the free version. I set the the audio method to fm_hcitool the band to European (I live in Germany) and the radio worked. I could only get it to come out of the phone not the headphones, but it was better than nothing. It requires BT being active, but it will turn that on itself. I am running CM7 (when I tried earlier, I was still stock Froyo, before the GB Rom's were available.)
Update - download the updated Spirit FM from http://forum.xda-developers.com/showthread.php?t=1059296. I still can't get it to go through the headphones, but other than that it works.
michaeljwestii said:
I finally took the time to look at this, and the link provided provides a working FM Radio app. Go figure. It works, for the most part. The link is to the English translation of a Vietnamese page. There is a link to FM Radio for Dell Venue, which is a rar file on mediafire (http://www.mediafire.com/?ob6ot26eey5m7dh). The Google Translate thing screws up the link, so just use the one I posted. Inside the rar is two apk's and a file called fm_hcitool. I installed the one called 20110824SFR-MM.apk (not the one called Streak Radio) and it turned out to be Spirit FM - the free version. I set the the audio method to fm_hcitool the band to European (I live in Germany) and the radio worked. I could only get it to come out of the phone not the headphones, but it was better than nothing. It requires BT being active, but it will turn that on itself. I am running CM7 (when I tried earlier, I was still stock Froyo, before the GB Rom's were available.)
Update - download the updated Spirit FM from http://forum.xda-developers.com/showthread.php?t=1059296. I still can't get it to go through the headphones, but other than that it works.
Click to expand...
Click to collapse
I tried the above on Stock Android
Nothing worked
All I want to know is how "fm_hcitool" works or how to set it?
I think you need a rooted venue for the above
prasad12ka4 said:
I tried the above on Stock Android
Nothing worked
All I want to know is how "fm_hcitool" works or how to set it?
I think you need a rooted venue for the above
Click to expand...
Click to collapse
Nothing worked when I tried on my stock rooted venue either. It works now under CM7 though. I really have no idea what the fm_hcitool file does. I saw the file in the rar file, and took a guess when I configured Spirit FM. I only copied the Spirit FM apk over to the venue too, not the fm_hcitool file. Maybe it will work fully with that on the phone, I see the Streak guys got their radio working by putting it in the /system/bin folder and setting the correct permissions. Maybe I will try that later and see if it changes anything.
DELL VENUE CAN USE RADIO OFFLINE
SEE THE POST HERE.
it's a vietnamese post. so use the gooogle translate to readit
Its easy to do.
You only have to root your venue and copy a file which was included in the post "D
http://www.tinhte.vn/threads/899475/#post-11429760
nguyen_vh said:
DELL VENUE CAN USE RADIO OFFLINE
SEE THE POST HERE.
it's a vietnamese post. so use the gooogle translate to readit
Its easy to do.
You only have to root your venue and copy a file which was included in the post "D
http://www.tinhte.vn/threads/899475/#post-11429760
Click to expand...
Click to collapse
Thanks mate
Has anyone tried it?
I am on stock unrooted so curious.
prasad12ka4 said:
Thanks mate
Has anyone tried it?
I am on stock unrooted so curious.
Click to expand...
Click to collapse
It's the same as what I posted earlier. It works on CM7, except I can not get the sound to come out of the headphones, only the speaker.
michaeljwestii said:
It's the same as what I posted earlier. It works on CM7, except I can not get the sound to come out of the headphones, only the speaker.
Click to expand...
Click to collapse
I've done it before. It's great.
And the wonderful thing is you can listen to music when the radio is on and a call is in progress
The phone call uses the small phone speaker.
The muzick player uses the loud speaker.
And the radio ( spirit FM ) uses the earphone.
And.... They work at the same time together
By using Spirit FM, you can control the output sound.
You can choose where the sound will be play ( headphone or loudspeaker )
nguyen_vh said:
I've done it before. It's great.
And the wonderful thing is you can listen to music when the radio is on and a call is in progress
The phone call uses the small phone speaker.
The muzick player uses the loud speaker.
And the radio ( spirit FM ) uses the earphone.
And.... They work at the same time together
By using Spirit FM, you can control the output sound.
You can choose where the sound will be play ( headphone or loudspeaker )
Click to expand...
Click to collapse
so as per your information radio can be heard on headset and speaker at same time?
Tried this App
Not up to the mark
Lots of freeze and bugs
Need to find something solid
any app working fine found?
Sent from my Dell Venue using xda premium
Spirit free fm
http://forum.xda-developers.com/showthread.php?t=1059296
Download the latest FREE version from above link
Works FLAWLESS!!!
I am still testing it
But if you have CM7 and DSP Manager Running it sounds AWESOME!!!
Volume is good!!!
prasad12ka4 said:
http://forum.xda-developers.com/showthread.php?t=1059296
Download the latest FREE version from above link
Works FLAWLESS!!!
I am still testing it
But if you have CM7 and DSP Manager Running it sounds AWESOME!!!
Volume is good!!!
Click to expand...
Click to collapse
Just found this thread after someone reported it working.

Any ICS rom supporting Bluetooth MAP (Message Access Profile)?

Are there any ICS roms that have support for bluetooth message access profile? It's for accessing sms via external equipment like car decks.
Thanks
Functionalities depend on module, not ROM.
So does that mean GSII does not and will not have MAP capability?
I'm pretty sure GSII is capable of doing MAP ..it's just missing the software. It uses the same Broadcom BCM4330 chip which is also found in the Nexus ..and that according to Google, supports Message Access Profile http://support.google.com/nexus/bin/answer.py?hl=en&answer=2687662
MAP sounds like it could be incorporated into another Rom.
How can we do this?
Can the bluetooth software from the Galaxy be pulled from the phone?
Who knows how to do this?

Categories

Resources