![]() |
2010-04-03
, 17:47
|
Posts: 1 |
Thanked: 0 times |
Joined on Apr 2010
|
#272
|
![]() |
2010-07-02
, 03:49
|
Posts: 44 |
Thanked: 11 times |
Joined on May 2010
|
#273
|
I can only find FM-boost cant find the widget (not sure of name FMTX?) anywhere. Also using fm-boost i hear no difference still static..Using my iphone dock i get crystal clear sound on N900 i still get enough static in background to bother me. im in a suburb of chicago, IL Anyone tell me if widget was taken off or the right name? thanks : )
ps i did read all 28 pages
![]() |
2010-07-02
, 04:47
|
|
Posts: 2,869 |
Thanked: 1,784 times |
Joined on Feb 2007
@ Po' Bo'. PA
|
#274
|
Hi,
OK I have read through this thread. My FM Transmitter is enabled, it works if I hold it right at the base of the antenna for my radio, but I can only just hear it.
Running the fm-boost script, or just echoing 118 (or 120) right into /sys/class/i2c-adapter/i2c-2/2-0063/power_level makes no difference at all, which makes me wonder if I am missing something.
The next thing I tried was putting 88 into the power_level at which point I lost anything I had. So then I incremented bit by bit to see what happened. At about 110 I could just hear my music through the static (and the device is still resting on the antenna). At 114 it's almost clear, but once it gets past 114 there is no noticeable difference in quality with each increment.
So I am wondering if there is something else that I need to do, or if there are any suggestions as to why mine seems to stop getting better at around 114 when most people see a substantial difference going to 118?
My phone is a UK phone, bought from Carphone Warehouse. I am on the latest UK (203) firmware.
Cheers,
Ben
cat /sys/class/i2c-adapter/i2c-2/2-0063/power_level
The Following 3 Users Say Thank You to YoDude For This Useful Post: | ||
![]() |
2010-07-02
, 08:34
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#275
|
If it is 118, then your device is doing everything it should be doing and I would try another receiver or antenna.
![]() |
2010-07-02
, 09:03
|
Posts: 121 |
Thanked: 40 times |
Joined on Dec 2009
@ Tokyo, Japan
|
#276
|
![]() |
2010-07-02
, 18:34
|
Posts: 1 |
Thanked: 0 times |
Joined on Jan 2010
|
#277
|
![]() |
2010-07-03
, 07:29
|
|
Posts: 2,869 |
Thanked: 1,784 times |
Joined on Feb 2007
@ Po' Bo'. PA
|
#278
|
What would happen if the power_level would be turned up to something like 130 or 140?
![]() |
2011-02-04
, 15:40
|
Posts: 58 |
Thanked: 31 times |
Joined on Nov 2010
|
#279
|
![]() |
2011-04-14
, 20:37
|
Posts: 617 |
Thanked: 338 times |
Joined on Mar 2011
|
#280
|
#!/usr/bin/python
import time
FILENAME = '/sys/class/i2c-adapter/i2c-2/2-0063/power_level'
def main():
while True:
f = open(FILENAME)
power = f.read()
f.close()
if power == '113\n':
print 'Increasing power to 120'
f = open(FILENAME, 'w')
f.write('120')
f.close()
time.sleep(2)
if __name__ == '__main__':
main()
Nokia-N900:~# python /home/user/MyDocs/fmboost.py
Increasing power to 120
Traceback (most recent call last):
File "/home/user/MyDocs/fmboost.py", line 20, in <module>
main()
File "/home/user/MyDocs/fmboost.py", line 16, in main
f.close()
IOError: [Errno 1] Operation not permitted
OK I have read through this thread. My FM Transmitter is enabled, it works if I hold it right at the base of the antenna for my radio, but I can only just hear it.
Running the fm-boost script, or just echoing 118 (or 120) right into /sys/class/i2c-adapter/i2c-2/2-0063/power_level makes no difference at all, which makes me wonder if I am missing something.
The next thing I tried was putting 88 into the power_level at which point I lost anything I had. So then I incremented bit by bit to see what happened. At about 110 I could just hear my music through the static (and the device is still resting on the antenna). At 114 it's almost clear, but once it gets past 114 there is no noticeable difference in quality with each increment.
So I am wondering if there is something else that I need to do, or if there are any suggestions as to why mine seems to stop getting better at around 114 when most people see a substantial difference going to 118?
My phone is a UK phone, bought from Carphone Warehouse. I am on the latest UK (203) firmware.
Cheers,
Ben