diff --git a/README.md b/README.md index 1e9dc14..ce66856 100644 --- a/README.md +++ b/README.md @@ -665,6 +665,10 @@ This library does not currently support the spread spectrum function of the Si53 Changelog +* v2.0.5 + + * Remove PLL reset from set_freq() when not necessary + * v2.0.4 * Fix error in VCXO algorithm diff --git a/library.properties b/library.properties index 12cfe7f..3d92468 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Etherkit Si5351 -version=2.0.4 +version=2.0.5 author=Jason Milldrum maintainer=Jason Milldrum sentence=A full-featured library for the Si5351 series of clock generator ICs from Silicon Labs diff --git a/src/si5351.cpp b/src/si5351.cpp index c77e87c..0706033 100644 --- a/src/si5351.cpp +++ b/src/si5351.cpp @@ -304,7 +304,7 @@ uint8_t Si5351::set_freq(uint64_t freq, enum si5351_clock clk) set_ms(clk, ms_reg, int_mode, r_div, div_by_4); // Reset the PLL - pll_reset(pll_assignment[clk]); + //pll_reset(pll_assignment[clk]); } return 0;