Skip to content

Commit 6dc44cf

Browse files
authored
Merge pull request #48 from etherkit/v2.0.5
V2.0.5
2 parents e116320 + 740be74 commit 6dc44cf

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,10 @@ This library does not currently support the spread spectrum function of the Si53
665665

666666
Changelog
667667

668+
* v2.0.5
669+
670+
* Remove PLL reset from set_freq() when not necessary
671+
668672
* v2.0.4
669673

670674
* Fix error in VCXO algorithm

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Etherkit Si5351
2-
version=2.0.4
2+
version=2.0.5
33
author=Jason Milldrum <[email protected]>
44
maintainer=Jason Milldrum <[email protected]>
55
sentence=A full-featured library for the Si5351 series of clock generator ICs from Silicon Labs

src/si5351.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ uint8_t Si5351::set_freq(uint64_t freq, enum si5351_clock clk)
304304
set_ms(clk, ms_reg, int_mode, r_div, div_by_4);
305305

306306
// Reset the PLL
307-
pll_reset(pll_assignment[clk]);
307+
//pll_reset(pll_assignment[clk]);
308308
}
309309

310310
return 0;

0 commit comments

Comments
 (0)