-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Si5351B 127mhz<not working<150mhz #70
Comments
Are you sure you have all the power rails correct? What does the Si5351 return? Try the demo sketch with a change of frequency to be sure.
Got a B version here working correctly.
Br.
Thomas.
Sendt fra min iPhone
… 9. jun. 2019 kl. 00:59 skrev HAKKI CAN ***@***.***>:
i am using si5351b and 25mhz crystal. I can't see the output between 127 MHz and 150 MHz.
si5351.set_freq(14600000000ULL, SI5351_CLK0);
and
si5351.set_ms_source(SI5351_CLK0, SI5351_PLLB); // or SI5351_PLLA si5351.set_freq_manual(14600000000ULL, 87600000000ULL, SI5351_CLK0);
I tried both methods.
is this an bug? What am I doing wrong? (v2.1.4 )
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I made the connections with the Si5351BCBreakout.pdf file. I'm using demo sketch. I've tried changing frequencies. I see the signal at 127mhz. But no signal between 128-149mhz. And I received the signal again on 150mhz. |
Hi, When running wspr tracker on either Atmega328p or ESP8266 with this library and set to: It does not output on the wanted frequency. Monitoring the spectrum on an SDR shows that it transmits, I see signal on 140.772 MHz but with wider shift as default for wspr so that might be a harmonic from a lower frequency. Tested all HF wspr frequencies up to 10 mtr whick works okay. |
I hope you find the time to take a look at this issue. Still no luck to get it to work at 144 MHz. Thanks, |
I had the same issue. It seems div by 4 needs to be activated from 125 MHz upward and not 150 MHz. But when doing so, for 125 MHz the PLL frequency would be 500 MHz. Since the library does not support such a low PLL all frequencies between 125 and 150 MHz are changed to 150 MHz. So a setting that works but is out of specs is #define SI5351_PLL_VCO_MIN 500000000 I would also point that Si5351 is supposed to go down to 2.5 KHz from revision 1.0 and that OMD can go to 2048, se personally I have these settings, working, provided there isn't a bug I haven't seen: #define SI5351_MULTISYNTH_A_MAX 2048 #define SI5351_MULTISYNTH_MIN_FREQ 320000 these two parameters must be set together, it would be best to have #define SI5351_MULTISYNTH_MIN_FREQ SI5351_CLKOUT_MIN_FREQ * 128 |
i am using si5351b and 25mhz crystal. I can't see the output between 127 MHz and 150 MHz.
si5351.set_freq(14600000000ULL, SI5351_CLK0);
and
si5351.set_ms_source(SI5351_CLK0, SI5351_PLLB); // or SI5351_PLLA si5351.set_freq_manual(14600000000ULL, 87600000000ULL, SI5351_CLK0);
I tried both methods.
is this an bug? What am I doing wrong? (v2.1.4 )
The text was updated successfully, but these errors were encountered: