fixed bad output spectrum. problem was P3 = 0 in si5351c pll, similar to commit b595de647077f208c534e4efc0bce92f25378fb8

This commit is contained in:
Michael Ossmann
2012-08-22 10:41:53 -06:00
parent 33e78afcc9
commit cbd2d98c7d

View File

@ -127,7 +127,7 @@ void si5351c_configure_pll_sources_for_xtal()
/* MultiSynth NA (PLL1) */ /* MultiSynth NA (PLL1) */
void si5351c_configure_pll1_multisynth() void si5351c_configure_pll1_multisynth()
{ {
uint8_t data[] = { 26, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00 }; uint8_t data[] = { 26, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00 };
si5351c_write(data, sizeof(data)); si5351c_write(data, sizeof(data));
} }