From cbd2d98c7d668804ef41ee5020865bdc93da79c0 Mon Sep 17 00:00:00 2001 From: Michael Ossmann Date: Wed, 22 Aug 2012 10:41:53 -0600 Subject: [PATCH] fixed bad output spectrum. problem was P3 = 0 in si5351c pll, similar to commit b595de647077f208c534e4efc0bce92f25378fb8 --- firmware/common/si5351c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/common/si5351c.c b/firmware/common/si5351c.c index 26b9d2de..5d7adf06 100644 --- a/firmware/common/si5351c.c +++ b/firmware/common/si5351c.c @@ -127,7 +127,7 @@ void si5351c_configure_pll_sources_for_xtal() /* MultiSynth NA (PLL1) */ 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)); }