Seek jumps over stations
FrankBoesing opened this issue · 4 comments
FrankBoesing commented
Hi, congrats to this great library!
I use the SI7435-D60, connected to a Teensy 4.0 - will try digital Audio (I2S) later
When seeking, it often misses stations. When retrying several times, it find the "missing" station. Tried with FM so far.
What can I do, or, what can be the problem?
FrankBoesing commented
Forgot to mention - i don't use the crystal, but let the Teens create 31250 Hz for the clock.
pu2clr commented
Hi Frank.
Try the function shown below after sitting the receiver to FM (setFM) :
si4735.setSeekFmSpacing(1); // Although the guide does not mention the
value 1 (10 kHz), it seems to work better than 5 (50 kHz), 10 (100 kHz)
and 20 (200 kHz)
Other functions you should to check:
si4735.setSeekAmRssiThreshold(20);
si4735.setSeekAmSrnThreshold(10);
si4735.setSeekFmRssiThreshold(5);
si4735.setSeekFmSrnThreshold(5);
Regards.
Ricardo.
…On Wed, Mar 31, 2021 at 6:46 AM Frank ***@***.***> wrote:
Hi, congrats to this great library!
I use the SI7435-D60, connected to a Teensy 4.0 - will try digital Audio
(I2S) later
When seeking, it often misses stations. When retrying several times, it
find the "missing" station. Tried with FM so far.
What can I do, or, what can be the problem?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#7>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAVSJNGBZ7UJVIT4H4M7ZDDTGLVNVANCNFSM42EGXLZA>
.
--
QRZ: http://www.qrz.com/db/PU2CLR
Skype: ricardo_caratti
Mobile: +55 61 981442296
FrankBoesing commented
Hi Ricardo,
i played a bit with it. Thank you, that helps, and I think I can use that.
FrankBoesing commented
(and the I2S digital audio works great, too (just in case you did not try it so far) )